[climacs-cvs] CVS update: climacs/syntax.lisp climacs/packages.lisp
Dave Murray
dmurray at common-lisp.net
Sun Aug 14 12:12:36 UTC 2005
Update of /project/climacs/cvsroot/climacs
In directory common-lisp.net:/tmp/cvs-serv24141
Modified Files:
syntax.lisp packages.lisp
Log Message:
The other parts of the list movement commands.
Date: Sun Aug 14 14:12:35 2005
Author: dmurray
Index: climacs/syntax.lisp
diff -u climacs/syntax.lisp:1.55 climacs/syntax.lisp:1.56
--- climacs/syntax.lisp:1.55 Fri Aug 5 14:40:56 2005
+++ climacs/syntax.lisp Sun Aug 14 14:12:35 2005
@@ -67,6 +67,31 @@
(defgeneric forward-sentence (mark syntax))
+(defgeneric forward-list (mark syntax)
+ (:method (mark syntax)
+ (error 'no-such-operation)))
+
+(defgeneric backward-list (mark syntax)
+ (:method (mark syntax)
+ (error 'no-such-operation)))
+
+(defgeneric down-list (mark syntax)
+ (:method (mark syntax)
+ (error 'no-such-operation)))
+
+(defgeneric backward-down-list (mark syntax)
+ (:method (mark syntax)
+ (error 'no-such-operation)))
+
+(defgeneric backward-up-list (mark syntax)
+ (:method (mark syntax)
+ (error 'no-such-operation)))
+
+(defgeneric up-list (mark syntax)
+ (:method (mark syntax)
+ (error 'no-such-operation)))
+
+
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Commenting
Index: climacs/packages.lisp
diff -u climacs/packages.lisp:1.74 climacs/packages.lisp:1.75
--- climacs/packages.lisp:1.74 Fri Aug 5 10:07:17 2005
+++ climacs/packages.lisp Sun Aug 14 14:12:35 2005
@@ -113,6 +113,9 @@
#:redisplay-pane-with-syntax
#:backward-paragraph #:forward-paragraph
#:backward-sentence #:forward-sentence
+ #:forward-list #:backward-list
+ #:down-list #:up-list
+ #:backward-down-list #:backward-up-list
#:syntax-line-comment-string
#:line-comment-region #:comment-region
#:line-uncomment-region #:uncomment-region))
More information about the Climacs-cvs
mailing list