diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2011-05-22 15:22:30 -0300 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2011-05-22 15:22:30 -0300 |
commit | 9c848d8a7578d84212bac6559681fd0cf795581c (patch) | |
tree | abd2b0230e653f625ded84ee1f3004f53937c7ce /lisp/emacs-lisp/bytecomp.el | |
parent | 79106a44d30dd3ec15a5bdd653b1d1911fe05ff7 (diff) | |
download | emacs-9c848d8a7578d84212bac6559681fd0cf795581c.tar.gz emacs-9c848d8a7578d84212bac6559681fd0cf795581c.tar.bz2 emacs-9c848d8a7578d84212bac6559681fd0cf795581c.zip |
* lisp/emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
funcall as well. Warn when performing those conversions.
* lisp/emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
Fixes: debbugs:8712
Diffstat (limited to 'lisp/emacs-lisp/bytecomp.el')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index e7f2115a848..49b39b6a1f9 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -2892,8 +2892,8 @@ If FORM is a lambda or a macro, byte-compile it as a function." That command is designed for interactive use only" fn)) (if (and (fboundp (car form)) (eq (car-safe (symbol-function (car form))) 'macro)) - (byte-compile-report-error - (format "Forgot to expand macro %s" (car form)))) + (byte-compile-log-warning + (format "Forgot to expand macro %s" (car form)) nil :error)) (if (and handler ;; Make sure that function exists. This is important ;; for CL compiler macros since the symbol may be |