emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r110098: Partial fix for bug#12371


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r110098: Partial fix for bug#12371
Date: Wed, 19 Sep 2012 09:09:43 -0700
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110098
fixes bug: http://debbugs.gnu.org/12371
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Wed 2012-09-19 09:09:43 -0700
message:
  Partial fix for bug#12371
  
  * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
  (byte-compile-log-warning): Autoload.
modified:
  lisp/ChangeLog
  lisp/emacs-lisp/macroexp.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-09-19 07:27:29 +0000
+++ b/lisp/ChangeLog    2012-09-19 16:09:43 +0000
@@ -1,5 +1,8 @@
 2012-09-19  Glenn Morris  <address@hidden>
 
+       * 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.

=== modified file 'lisp/emacs-lisp/macroexp.el'
--- a/lisp/emacs-lisp/macroexp.el       2012-09-04 17:40:25 +0000
+++ b/lisp/emacs-lisp/macroexp.el       2012-09-19 16:09:43 +0000
@@ -111,6 +111,9 @@
        (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'.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]