diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2012-12-09 20:32:36 -0500 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2012-12-09 20:32:36 -0500 |
commit | bad162fd1bc6134158eb097aa4ea21b881c9ef1c (patch) | |
tree | 132cf9a4790a051c579460957ce4ec024ceed59e /lisp/emacs-lisp | |
parent | 8d1a544c118268dcd72633c69b920800cdb167ee (diff) | |
download | emacs-bad162fd1bc6134158eb097aa4ea21b881c9ef1c.tar.gz emacs-bad162fd1bc6134158eb097aa4ea21b881c9ef1c.tar.bz2 emacs-bad162fd1bc6134158eb097aa4ea21b881c9ef1c.zip |
* lisp/emacs-lisp/cl-lib.el (cl-declaim): Paren typo.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-lib.el | 2 |
1 files changed, 1 insertions, 1 deletions
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. |