Partial fix for bug#12371
* emacs-lisp/macroexp.el (byte-compile-warn-obsolete) (byte-compile-log-warning): Autoload.
This commit is contained in:
parent
a732eace5f
commit
35f5b19d7a
2 changed files with 6 additions and 0 deletions
|
@ -1,5 +1,8 @@
|
|||
2012-09-19 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
|
||||
(byte-compile-log-warning): Autoload. (Bug#12371)
|
||||
|
||||
* calendar/calendar.el (calendar-american-month-header)
|
||||
(calendar-european-month-header, calendar-iso-month-header)
|
||||
(calendar-month-header): New options.
|
||||
|
|
|
@ -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'.
|
||||
|
|
Loading…
Add table
Reference in a new issue