emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r109079: Fixes: debbugs:11938


From: Andreas Schwab
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r109079: Fixes: debbugs:11938
Date: Fri, 13 Jul 2012 20:15:22 +0200
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 109079
committer: Andreas Schwab <address@hidden>
branch nick: emacs
timestamp: Fri 2012-07-13 20:15:22 +0200
message:
  Fixes: debbugs:11938
  
  * emacs-lisp/cl.el (labels): Remove spurious quote.
modified:
  lisp/ChangeLog
  lisp/emacs-lisp/cl.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-07-13 17:02:18 +0000
+++ b/lisp/ChangeLog    2012-07-13 18:15:22 +0000
@@ -1,3 +1,7 @@
+2012-07-13  Andreas Schwab  <address@hidden>
+
+       * emacs-lisp/cl.el (labels): Remove spurious quote.  (Bug#11938)
+
 2012-07-13  Juanma Barranquero  <address@hidden>
 
        * bindings.el (top): Use `mapc' instead of `mapcar'.

=== modified file 'lisp/emacs-lisp/cl.el'
--- a/lisp/emacs-lisp/cl.el     2012-07-11 23:13:41 +0000
+++ b/lisp/emacs-lisp/cl.el     2012-07-13 18:15:22 +0000
@@ -489,7 +489,7 @@
   "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)))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]