diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2012-07-13 20:15:22 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2012-07-13 20:15:22 +0200 |
commit | 7f5b319886fac0bf379dada4a8c2cbd8dc4fe3c7 (patch) | |
tree | 288882608884041498d2e51b3c96085f1bf8d74f /lisp/emacs-lisp/cl.el | |
parent | 0dc8cf5002ba3f79bf840de5b83c0f4f2e4e6279 (diff) | |
download | emacs-7f5b319886fac0bf379dada4a8c2cbd8dc4fe3c7.tar.gz emacs-7f5b319886fac0bf379dada4a8c2cbd8dc4fe3c7.tar.bz2 emacs-7f5b319886fac0bf379dada4a8c2cbd8dc4fe3c7.zip |
Fixes: debbugs:11938
* emacs-lisp/cl.el (labels): Remove spurious quote.
Diffstat (limited to 'lisp/emacs-lisp/cl.el')
-rw-r--r-- | lisp/emacs-lisp/cl.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cl.el b/lisp/emacs-lisp/cl.el index e1e40029491..32cf1670744 100644 --- a/lisp/emacs-lisp/cl.el +++ b/lisp/emacs-lisp/cl.el @@ -489,7 +489,7 @@ will not work - use `labels' instead" (symbol-name (car x)))) "Make temporary function bindings. Like `cl-labels' except that the lexical scoping is handled via `lexical-let' rather than relying on `lexical-binding'." - (declare (indent 1) (debug cl-flet) (obsolete 'cl-labels "24.2")) + (declare (indent 1) (debug cl-flet) (obsolete cl-labels "24.2")) (let ((vars nil) (sets nil) (newenv macroexpand-all-environment)) (dolist (binding bindings) ;; It's important that (not (eq (symbol-name var1) (symbol-name var2))) |