* lisp/emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 12 Jun 2012 18:10:34 +0000 (14:10 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 12 Jun 2012 18:10:34 +0000 (14:10 -0400)
conversion to backquotes.

lisp/ChangeLog
lisp/emacs-lisp/cl-macs.el

index e452e96..c88f934 100644 (file)
@@ -1,3 +1,8 @@
+2012-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
+       conversion to backquotes.
+
 2012-06-12  Chong Yidong  <cyd@gnu.org>
 
        * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
index 0b49563..bc90898 100644 (file)
@@ -2325,7 +2325,7 @@ The form returns true if TAG was found and removed, nil otherwise."
        (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)