From: Ryan Brown Date: Tue, 9 Jul 2019 13:51:50 +0000 (+0200) Subject: Fix for lisp tagbody indentation X-Git-Tag: emacs-27.0.90~2034^2~22 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d34bfbc09cc90ae59ef303d78cc286dd12918d7c;p=emacs.git Fix for lisp tagbody indentation * lisp/emacs-lisp/cl-indent.el (lisp-indent-259): Indent PROG better (bug#36552). --- 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\ (null (cdr method))) (lisp-indent-report-bad-format method)) - (cond ((and tail (not (consp tem))) + (cond ((and tail (not (or (consp tem) (symbolp tem)))) ;; indent tail of &rest in same way as first elt of rest (throw 'exit normal-indent)) ((eq tem '&body)