mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-23 22:20:24 -08:00
Indent restart-case', handler-bind' and `restart-bind' correctly.
This commit is contained in:
parent
8c05b76c93
commit
09a4d958b2
1 changed files with 3 additions and 1 deletions
|
|
@ -402,9 +402,10 @@ by `lisp-body-indent'."
|
|||
(eval-when 1)
|
||||
(flet ((&whole 4 &rest (&whole 1 (&whole 4 &rest 1) &body))
|
||||
&body))
|
||||
(handler-case (4 &rest (&whole 2 (&whole 4 &rest 1) &body)))
|
||||
(labels . flet)
|
||||
(macrolet . flet)
|
||||
(handler-case (4 &rest (&whole 2 (&whole 4 &rest 1) &body)))
|
||||
(restart-case . handler-case)
|
||||
;; `else-body' style
|
||||
(if (nil nil &body))
|
||||
;; single-else style (then and else equally indented)
|
||||
|
|
@ -415,6 +416,7 @@ by `lisp-body-indent'."
|
|||
(let ((&whole 4 &rest (&whole 1 1 2)) &body))
|
||||
(let* . let)
|
||||
(compiler-let . let) ;barf
|
||||
(handler-bind . let) (restart-bind . let)
|
||||
(locally 1)
|
||||
;(loop ...)
|
||||
(multiple-value-bind
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue