* lisp/emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.

This commit is contained in:
Stefan Monnier 2012-09-19 23:29:41 -04:00
parent e99f70c8cd
commit 7a04bee953
2 changed files with 5 additions and 1 deletions

View 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)))