]> git.eshelyaron.com Git - emacs.git/commitdiff
* emacs-lisp/cl-indent.el (lisp-indent-259): Fix last fix.
authorChong Yidong <cyd@stupidchicken.com>
Fri, 27 Oct 2006 00:52:06 +0000 (00:52 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Fri, 27 Oct 2006 00:52:06 +0000 (00:52 +0000)
lisp/emacs-lisp/cl-indent.el

index 679a9bb68fdf5a6795f21d93a7e824cc19afc306..f09b72f396fde2561497a62506cf97beaf43f26e 100644 (file)
@@ -373,7 +373,9 @@ If nil, indent backquoted lists as data, i.e., like quoted lists."
                      ;; Too few elements in pattern.
                      (throw 'exit normal-indent)))
                 ((eq tem 'nil)
-                 (throw 'exit normal-indent))
+                (throw 'exit (if (consp normal-indent)
+                                 normal-indent
+                               (list normal-indent containing-form-start))))
                ((eq tem '&lambda)
                 (throw 'exit
                        (cond ((null p)