]> git.eshelyaron.com Git - emacs.git/commitdiff
Partial fix for bug#12371
authorGlenn Morris <rgm@gnu.org>
Wed, 19 Sep 2012 16:09:43 +0000 (09:09 -0700)
committerGlenn Morris <rgm@gnu.org>
Wed, 19 Sep 2012 16:09:43 +0000 (09:09 -0700)
* emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
(byte-compile-log-warning): Autoload.

lisp/ChangeLog
lisp/emacs-lisp/macroexp.el

index 93b25f21dc1f350f9c82192e43863fe994bf550b..12356141e79f2c8c17e5b941e6525d64cabf3ab5 100644 (file)
@@ -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.
index 394225d697e8c6aafb89ccfa0406ae9e9a5d9fc3..13064800cd589cd3d0acbf4576a903786b3717ca 100644 (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'.