* emacs-lisp/cl-indent.el (lisp-indent-259): Fix last fix.
This commit is contained in:
parent
bec9dc7b07
commit
6655e16dba
1 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue