aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/emacs-lisp/cl-indent.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cl-indent.el b/lisp/emacs-lisp/cl-indent.el
index 10af440008d..ad5f31713af 100644
--- a/lisp/emacs-lisp/cl-indent.el
+++ b/lisp/emacs-lisp/cl-indent.el
@@ -593,7 +593,7 @@ optional\\|rest\\|key\\|allow-other-keys\\|aux\\|whole\\|body\\|environment\
593 (null (cdr method))) 593 (null (cdr method)))
594 (lisp-indent-report-bad-format method)) 594 (lisp-indent-report-bad-format method))
595 595
596 (cond ((and tail (not (consp tem))) 596 (cond ((and tail (not (or (consp tem) (symbolp tem))))
597 ;; indent tail of &rest in same way as first elt of rest 597 ;; indent tail of &rest in same way as first elt of rest
598 (throw 'exit normal-indent)) 598 (throw 'exit normal-indent))
599 ((eq tem '&body) 599 ((eq tem '&body)