]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 20 Sep 2012 03:29:41 +0000 (23:29 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 20 Sep 2012 03:29:41 +0000 (23:29 -0400)
lisp/ChangeLog
lisp/emacs-lisp/macroexp.el

index d2266f9952f8bf4fdd22222aea3180e9882261bd..9d9949c3999cf3215568f3a5e4b31fee70ded66b 100644 (file)
@@ -1,3 +1,7 @@
+2012-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
+
 2012-09-19  Juri Linkov  <juri@jurta.org>
 
        * dired-aux.el (dired-diff): Add (require 'diff) because
index 6a84be067281e1afa29605a241b9e55313fed454..f9be3e4fcc4675f4beaf1ed6ea25de809b61ed60 100644 (file)
@@ -149,7 +149,7 @@ Assumes the caller has bound `macroexpand-all-environment'."
                      (symbolp (car form))
                      (get (car form) 'byte-obsolete-info))
                 (macroexp--funcall-and-return
-                 (lambda () (byte-compile-warn-obsolete ',(car form)))
+                 (lambda () (byte-compile-warn-obsolete (car form)))
                  #'ignore      ;FIXME: We should `message' something.
                  new-form)
               new-form)))