diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2006-10-26 20:39:53 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2006-10-26 20:39:53 +0000 |
commit | bec9dc7b07967e4f6696076beffa84921fabec7c (patch) | |
tree | 204cbacf10f3a01c8918347b1917733ef02f5056 /lisp/emacs-lisp/cl-indent.el | |
parent | ea968dfbfddcdf3f6c15d61623c2d53962e8ca6d (diff) | |
download | emacs-bec9dc7b07967e4f6696076beffa84921fabec7c.tar.gz |
* emacs-lisp/cl-indent.el (lisp-indent-259): Indent nil's in the
pattern normally.
Diffstat (limited to 'lisp/emacs-lisp/cl-indent.el')
-rw-r--r-- | lisp/emacs-lisp/cl-indent.el | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lisp/emacs-lisp/cl-indent.el b/lisp/emacs-lisp/cl-indent.el index c3ceb4c2f3a..679a9bb68fd 100644 --- a/lisp/emacs-lisp/cl-indent.el +++ b/lisp/emacs-lisp/cl-indent.el @@ -373,14 +373,14 @@ 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 (list normal-indent containing-form-start))) - ((eq tem '&lambda) - (throw 'exit - (cond ((null p) - (list (+ sexp-column 4) containing-form-start)) - ((null (cdr p)) - (+ sexp-column 1)) - (t normal-indent)))) + (throw 'exit normal-indent)) + ((eq tem '&lambda) + (throw 'exit + (cond ((null p) + (list (+ sexp-column 4) containing-form-start)) + ((null (cdr p)) + (+ sexp-column 1)) + (t normal-indent)))) ((integerp tem) (throw 'exit (if (null p) ;not in subforms |