From bad162fd1bc6134158eb097aa4ea21b881c9ef1c Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Sun, 9 Dec 2012 20:32:36 -0500 Subject: * lisp/emacs-lisp/cl-lib.el (cl-declaim): Paren typo. --- lisp/emacs-lisp/cl-lib.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisp/emacs-lisp/cl-lib.el') diff --git a/lisp/emacs-lisp/cl-lib.el b/lisp/emacs-lisp/cl-lib.el index 8120c87de16..55f6ac94c2b 100644 --- a/lisp/emacs-lisp/cl-lib.el +++ b/lisp/emacs-lisp/cl-lib.el @@ -260,7 +260,7 @@ one value. "Like `cl-proclaim', but takes any number of unevaluated, unquoted arguments. Puts `(cl-eval-when (compile load eval) ...)' around the declarations so that they are registered at compile-time as well as run-time." - (let ((body (mapcar (lambda (x) `(cl-proclaim ',x) specs)))) + (let ((body (mapcar (lambda (x) `(cl-proclaim ',x)) specs))) (if (cl--compiling-file) `(cl-eval-when (compile load eval) ,@body) `(progn ,@body)))) ; Avoid loading cl-macs.el for cl-eval-when. -- cgit v1.2.3