Update of /project/climacs/cvsroot/climacs In directory clnet:/tmp/cvs-serv11217
Modified Files: lisp-syntax.lisp Log Message: Added simple-minded indentation rule for comma-forms.
--- /project/climacs/cvsroot/climacs/lisp-syntax.lisp 2006/06/05 16:13:33 1.85 +++ /project/climacs/cvsroot/climacs/lisp-syntax.lisp 2006/06/12 10:48:29 1.86 @@ -2302,6 +2302,9 @@ (defmethod indent-form ((syntax lisp-syntax) (tree backquote-form) path) (indent-form 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))) + (defmethod indent-form ((syntax lisp-syntax) (tree function-form) path) (if (null (cdr path)) (values tree 0)