* emacs-lisp/cl-indent.el (lisp-indent-259): Indent nil's in the
pattern normally.
This commit is contained in:
parent
ea968dfbfd
commit
bec9dc7b07
2 changed files with 13 additions and 8 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2006-10-26 Chong Yidong <cyd@stupidchicken.com>
|
||||||
|
|
||||||
|
* emacs-lisp/cl-indent.el (lisp-indent-259): Indent nil's in the
|
||||||
|
pattern normally.
|
||||||
|
|
||||||
2006-10-26 Nick Roberts <nickrob@snap.net.nz>
|
2006-10-26 Nick Roberts <nickrob@snap.net.nz>
|
||||||
|
|
||||||
* bindings.el (mode-line-mode-menu): Remove bindings for global
|
* bindings.el (mode-line-mode-menu): Remove bindings for global
|
||||||
|
|
|
@ -373,7 +373,7 @@ If nil, indent backquoted lists as data, i.e., like quoted lists."
|
||||||
;; Too few elements in pattern.
|
;; Too few elements in pattern.
|
||||||
(throw 'exit normal-indent)))
|
(throw 'exit normal-indent)))
|
||||||
((eq tem 'nil)
|
((eq tem 'nil)
|
||||||
(throw 'exit (list normal-indent containing-form-start)))
|
(throw 'exit normal-indent))
|
||||||
((eq tem '&lambda)
|
((eq tem '&lambda)
|
||||||
(throw 'exit
|
(throw 'exit
|
||||||
(cond ((null p)
|
(cond ((null p)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue