1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-26 07:11:34 -08:00

Partial fix for bug#12371

* emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
(byte-compile-log-warning): Autoload.
This commit is contained in:
Glenn Morris 2012-09-19 09:09:43 -07:00
parent a732eace5f
commit 35f5b19d7a
2 changed files with 6 additions and 0 deletions

View file

@ -111,6 +111,9 @@ and also to avoid outputting the warning during normal execution."
(mapc (lambda (x) (funcall (eval x))) (cdr form))
(byte-compile-constant nil)))
(autoload 'byte-compile-warn-obsolete "bytecomp")
(autoload 'byte-compile-log-warning "bytecomp")
(defun macroexp--expand-all (form)
"Expand all macros in FORM.
This is an internal version of `macroexpand-all'.