From thenriksen at common-lisp.net Sun Jan 14 19:48:18 2007 From: thenriksen at common-lisp.net (thenriksen) Date: Sun, 14 Jan 2007 14:48:18 -0500 (EST) Subject: [climacs-cvs] CVS climacs Message-ID: <20070114194818.911C91A09D@common-lisp.net> Update of /project/climacs/cvsroot/climacs In directory clnet:/tmp/cvs-serv20149 Modified Files: gui.lisp Log Message: Drei requires command table objects, not command table designators. --- /project/climacs/cvsroot/climacs/gui.lisp 2006/12/10 19:44:56 1.234 +++ /project/climacs/cvsroot/climacs/gui.lisp 2007/01/14 19:48:18 1.235 @@ -51,7 +51,7 @@ () (:default-initargs :buffer (make-instance 'climacs-buffer) - :command-table 'global-climacs-table + :command-table (find-command-table 'global-climacs-table) :width 900 :height 400)) ;; Ensure that only one pane can be active. From thenriksen at common-lisp.net Wed Jan 17 12:21:29 2007 From: thenriksen at common-lisp.net (thenriksen) Date: Wed, 17 Jan 2007 07:21:29 -0500 (EST) Subject: [climacs-cvs] CVS climacs Message-ID: <20070117122129.6B1036800C@common-lisp.net> Update of /project/climacs/cvsroot/climacs In directory clnet:/tmp/cvs-serv20489 Modified Files: climacs.asd Log Message: Fixed dependency. --- /project/climacs/cvsroot/climacs/climacs.asd 2006/11/12 16:06:06 1.57 +++ /project/climacs/cvsroot/climacs/climacs.asd 2007/01/17 12:21:29 1.58 @@ -48,7 +48,7 @@ (:file "climacs" :depends-on ("gui" "core")) (:file "developer-commands" :depends-on ("core")) - (:file "file-commands" :depends-on ("gui" "core")) + (:file "file-commands" :depends-on ("gui" "core" "io")) (:file "misc-commands" :depends-on ("gui" "core" #+nil "groups")) (:file "search-commands" :depends-on ("gui" "core" #+nil "groups")) (:file "window-commands" :depends-on ("gui" "core"))