Update of /project/mcclim/cvsroot/mcclim In directory clnet:/tmp/cvs-serv19364
Modified Files: mcclim.asd Log Message: Merged splittist's work on splitting the general parts of the Lisp syntax's LR parser into an abstract syntax type. Also some supporting (mostly package) fixes needed to make it all still roll.
--- /project/mcclim/cvsroot/mcclim/mcclim.asd 2007/03/14 23:33:24 1.55 +++ /project/mcclim/cvsroot/mcclim/mcclim.asd 2007/04/27 21:37:14 1.56 @@ -311,7 +311,8 @@ (:file "misc-commands" :depends-on ("basic-commands")) (:file "unicode-commands" :depends-on ("core" "drei-clim")) (:file "search-commands" :depends-on ("core" "drei-clim")) - (:file "lisp-syntax" :depends-on ("motion" "fundamental-syntax" "core")) + (:file "lr-syntax" :depends-on ("fundamental-syntax" "core")) + (:file "lisp-syntax" :depends-on ("lr-syntax" "motion" "core")) (:file "lisp-syntax-swine" :depends-on ("lisp-syntax")) (:file "lisp-syntax-commands" :depends-on ("lisp-syntax-swine" "misc-commands")) #+#.(mcclim.system::ifswank) (:file "lisp-syntax-swank" :depends-on ("lisp-syntax")))))) @@ -341,7 +342,7 @@ (:file "buffer-streams-tests" :depends-on ("testing")) (:file "rectangle-tests" :depends-on ("testing")) (:file "undo-tests" :depends-on ("testing")) - (:file "lisp-syntax-tests" :depends-on ("testing")))))) + (:file "lisp-syntax-tests" :depends-on ("testing" "motion-tests"))))))
(defsystem :clim :depends-on (:clim-core :goatee-core :clim-postscript :drei-mcclim)