diff options
| author | Stefan Monnier | 2012-06-12 14:10:34 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2012-06-12 14:10:34 -0400 |
| commit | ad4d226cb8e04acf5063f343772dcb3ba950849e (patch) | |
| tree | 95d94df07f9a2c38f4397a3043cab1cb40cae3a6 | |
| parent | 5a6bd9b77338e1debe8e91c9973f270187929c9d (diff) | |
| download | emacs-ad4d226cb8e04acf5063f343772dcb3ba950849e.tar.gz emacs-ad4d226cb8e04acf5063f343772dcb3ba950849e.zip | |
* lisp/emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
conversion to backquotes.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e452e96fceb..c88f9341964 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent | ||
| 4 | conversion to backquotes. | ||
| 5 | |||
| 1 | 2012-06-12 Chong Yidong <cyd@gnu.org> | 6 | 2012-06-12 Chong Yidong <cyd@gnu.org> |
| 2 | 7 | ||
| 3 | * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings): | 8 | * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings): |
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 0b49563adff..bc90898ad00 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el | |||
| @@ -2325,7 +2325,7 @@ The form returns true if TAG was found and removed, nil otherwise." | |||
| 2325 | (if (eq ,ttag (car ,tval)) | 2325 | (if (eq ,ttag (car ,tval)) |
| 2326 | (progn ,(cl-setf-do-store (nth 1 method) `(cddr ,tval)) | 2326 | (progn ,(cl-setf-do-store (nth 1 method) `(cddr ,tval)) |
| 2327 | t) | 2327 | t) |
| 2328 | `(cl--do-remf ,tval ,ttag))))) | 2328 | (cl--do-remf ,tval ,ttag))))) |
| 2329 | 2329 | ||
| 2330 | ;;;###autoload | 2330 | ;;;###autoload |
| 2331 | (defmacro cl-shiftf (place &rest args) | 2331 | (defmacro cl-shiftf (place &rest args) |