emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r108581: * lisp/emacs-lisp/cl-macs.el


From: Stefan Monnier
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r108581: * lisp/emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
Date: Tue, 12 Jun 2012 14:10:34 -0400
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 108581
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Tue 2012-06-12 14:10:34 -0400
message:
  * lisp/emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
  conversion to backquotes.
modified:
  lisp/ChangeLog
  lisp/emacs-lisp/cl-macs.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-06-12 05:47:14 +0000
+++ b/lisp/ChangeLog    2012-06-12 18:10:34 +0000
@@ -1,3 +1,8 @@
+2012-06-12  Stefan Monnier  <address@hidden>
+
+       * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
+       conversion to backquotes.
+
 2012-06-12  Chong Yidong  <address@hidden>
 
        * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):

=== modified file 'lisp/emacs-lisp/cl-macs.el'
--- a/lisp/emacs-lisp/cl-macs.el        2012-06-11 20:47:33 +0000
+++ b/lisp/emacs-lisp/cl-macs.el        2012-06-12 18:10:34 +0000
@@ -2325,7 +2325,7 @@
        (if (eq ,ttag (car ,tval))
            (progn ,(cl-setf-do-store (nth 1 method) `(cddr ,tval))
                   t)
-         `(cl--do-remf ,tval ,ttag)))))
+         (cl--do-remf ,tval ,ttag)))))
 
 ;;;###autoload
 (defmacro cl-shiftf (place &rest args)


reply via email to

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