From d34bfbc09cc90ae59ef303d78cc286dd12918d7c Mon Sep 17 00:00:00 2001 From: Ryan Brown Date: Tue, 9 Jul 2019 15:51:50 +0200 Subject: Fix for lisp tagbody indentation * lisp/emacs-lisp/cl-indent.el (lisp-indent-259): Indent PROG better (bug#36552). --- lisp/emacs-lisp/cl-indent.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisp/emacs-lisp') 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) -- cgit v1.2.3