* emacs-lisp/cl-indent.el (lisp-indent-259): Fix last fix.

This commit is contained in:
Chong Yidong 2006-10-27 00:52:06 +00:00
parent bec9dc7b07
commit 6655e16dba

View 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)