[climacs-cvs] CVS climacs
thenriksen
thenriksen at common-lisp.net
Tue Jun 13 14:58:37 UTC 2006
Update of /project/climacs/cvsroot/climacs
In directory clnet:/tmp/cvs-serv25345
Modified Files:
lisp-syntax.lisp
Log Message:
Fixed indentation for quote and backquote forms (again?).
--- /project/climacs/cvsroot/climacs/lisp-syntax.lisp 2006/06/12 19:10:58 1.87
+++ /project/climacs/cvsroot/climacs/lisp-syntax.lisp 2006/06/13 14:58:37 1.88
@@ -2309,10 +2309,10 @@
(values tree 0))
(defmethod indent-form ((syntax lisp-syntax) (tree quote-form) path)
- (indent-form syntax (elt-noncomment (children tree) (car path)) (cdr path)))
+ (indent-list syntax (elt-noncomment (children tree) (car path)) (cdr path)))
(defmethod indent-form ((syntax lisp-syntax) (tree backquote-form) path)
- (indent-form syntax (elt-noncomment (children tree) (car path)) (cdr path)))
+ (indent-list syntax (elt-noncomment (children tree) (car path)) (cdr path)))
(defmethod indent-form ((syntax lisp-syntax) (tree comma-form) path)
(indent-form syntax (elt-noncomment (children tree) (car path)) (cdr path)))
More information about the Climacs-cvs
mailing list