# HG changeset patch # User Gerd Moellmann # Date 950820214 0 # Node ID 343886f78d1a6b7c397ab34ed22e6d148a4e556b # Parent 7ee8155d48c531361a1ccb4fd50535ae80918616 (lisp-indent-259): Indentation fix. diff -r 7ee8155d48c5 -r 343886f78d1a lisp/emacs-lisp/cl-indent.el --- a/lisp/emacs-lisp/cl-indent.el Thu Feb 17 20:04:15 2000 +0000 +++ b/lisp/emacs-lisp/cl-indent.el Thu Feb 17 20:43:34 2000 +0000 @@ -241,15 +241,16 @@ (setq tem (car method)) (or (eq tem 'nil) ;default indentation - (eq tem '&lambda) ;lambda list + (eq tem '&lambda) ;lambda list (and (eq tem '&body) (null (cdr method))) (and (eq tem '&rest) - (consp (cdr method)) (null (cddr method))) + (consp (cdr method)) + (null (cddr method))) (integerp tem) ;explicit indentation specified (and (consp tem) ;destructuring (eq (car tem) '&whole) - (or (symbolp (cadr tem)) - (integerp (cadr tem)))) + (or (symbolp (cadr tem)) + (integerp (cadr tem)))) (and (symbolp tem) ;a function to call to do the work. (null (cdr method))) (lisp-indent-report-bad-format method))