* emacs-lisp/cl-macs.el (cl-block-wrapper): Fix typo that broke CL
blocks.
This commit is contained in:
parent
bf02cb227d
commit
a08a25d7aa
2 changed files with 6 additions and 1 deletions
|
@ -2612,7 +2612,7 @@ and then returning foo."
|
|||
;; FIXME: To avoid re-applying macroexpand-all, we'd like to be able
|
||||
;; to indicate that this return value is already fully expanded.
|
||||
(if (cdr cl-entry)
|
||||
`(catch (nth 1 cl-form) ,@(cdr cl-body))
|
||||
`(catch ,(nth 1 cl-form) ,@(cdr cl-body))
|
||||
cl-body)))
|
||||
|
||||
(define-compiler-macro cl-block-throw (cl-tag cl-value)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue