[climacs-cvs] CVS update: climacs/cl-syntax.lisp climacs/climacs.asd climacs/packages.lisp
Robert Strandh
rstrandh at common-lisp.net
Mon Feb 7 15:26:42 UTC 2005
Update of /project/climacs/cvsroot/climacs
In directory common-lisp.net:/tmp/cvs-serv7778
Modified Files:
climacs.asd packages.lisp
Added Files:
cl-syntax.lisp
Log Message:
Beginning of a Common Lisp syntax that will be extended during the
spring by our group of students.
For now, it contains an incremental lexer that maintains the entire
buffer as a flexichain of `elements', i.e., syntactic elements that
are going to be meaningful to the incremental parser.
Date: Mon Feb 7 16:26:41 2005
Author: rstrandh
Index: climacs/climacs.asd
diff -u climacs/climacs.asd:1.17 climacs/climacs.asd:1.18
--- climacs/climacs.asd:1.17 Wed Feb 2 08:59:41 2005
+++ climacs/climacs.asd Mon Feb 7 16:26:41 2005
@@ -62,6 +62,7 @@
"syntax"
"text-syntax"
"html-syntax"
+ "cl-syntax"
"kill-ring"
"undo"
"pane"
Index: climacs/packages.lisp
diff -u climacs/packages.lisp:1.47 climacs/packages.lisp:1.48
--- climacs/packages.lisp:1.47 Sat Feb 5 08:04:03 2005
+++ climacs/packages.lisp Mon Feb 7 16:26:41 2005
@@ -89,6 +89,10 @@
#:beginning-of-paragraph #:end-of-paragraph
#:forward-to-error #:backward-to-error))
+(defpackage :climacs-cl-syntax
+ (:use :clim-lisp :clim :climacs-buffer :climacs-base :flexichain :climacs-syntax)
+ (:export))
+
(defpackage :climacs-kill-ring
(:use :clim-lisp :flexichain)
(:export #:kill-ring #:kill-ring-length #:kill-ring-max-size
More information about the Climacs-cvs
mailing list