Delete trailing whitespace. In lambda-list-parsing.lisp this fixes a bug
Annotate for file cl-unification.system
2004-11-17 mantoniotti 1 ;;;; -*- Mode: Lisp -*-
22:19:54 ' 2
' 3 ;;;; cl-unification.system --
' 4 ;;;; MK:DEFSYSTEM system file.
' 5
' 6 (mk:defsystem "CL-UNIFICATION"
2009-04-17 mantoniotti 7 :source-extension "lisp"
22:42:46 ' 8 :components ("unification-package"
' 9 "variables"
' 10 "substitutions"
' 11 "lambda-list-parsing"
' 12 "templates-hierarchy"
' 13 "unifier"
' 14 "match-block"
' 15 "apply-substitution"
' 16 (:module "lib-dependent"
' 17 :depends-on ("templates-hierarchy" "unifier")
' 18 :components ((:subsystem "cl-ppcre-template"
' 19 :non-required-p t
' 20 )
' 21 ))
' 22 ))
2011-04-02 rbrown 23
2004-11-17 mantoniotti 24 ;;; end of file -- cl-unification.system --