From a08a25d7aaf251aa18f2ef747be53734bc55cae9 Mon Sep 17 00:00:00 2001 From: Christian Ohler Date: Sun, 20 Mar 2011 20:48:12 +1100 Subject: * emacs-lisp/cl-macs.el (cl-block-wrapper): Fix typo that broke CL blocks. --- lisp/emacs-lisp/cl-macs.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisp/emacs-lisp') diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index d4279a1b200..7aac5bdaa01 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -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) -- cgit v1.2.3