diff options
| author | Ryan Brown | 2019-07-09 15:51:50 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2019-07-09 15:51:50 +0200 |
| commit | d34bfbc09cc90ae59ef303d78cc286dd12918d7c (patch) | |
| tree | 1f89d14e97e64bbb95207133c30b50274665ef95 | |
| parent | 0947c44306d59883d5b065f1dc7444a475ecde9b (diff) | |
| download | emacs-d34bfbc09cc90ae59ef303d78cc286dd12918d7c.tar.gz emacs-d34bfbc09cc90ae59ef303d78cc286dd12918d7c.zip | |
Fix for lisp tagbody indentation
* lisp/emacs-lisp/cl-indent.el (lisp-indent-259): Indent PROG
better (bug#36552).
| -rw-r--r-- | lisp/emacs-lisp/cl-indent.el | 2 |
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) |