From: Glenn Morris Date: Fri, 16 Aug 2013 06:53:41 +0000 (-0700) Subject: * bytecomp.el (byte-compile-make-variable-buffer-local): Tweak warning. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1686^2~209 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=58c4682f76b2417640a6789aaa8ee0ad9ab4bad9;p=emacs.git * bytecomp.el (byte-compile-make-variable-buffer-local): Tweak warning. Fixes: debbugs:14926 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index bc51679a9ce..c35252b184c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2013-08-16 Glenn Morris + * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local): + Tweak warning. (Bug#14926) + * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove. (menu-bar-tools-menu): Simplify news and mail items. (Bug#15095) diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 5baef042757..c6612024fa6 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -4274,7 +4274,7 @@ binding slots have been popped." (if (and (eq (car-safe (car-safe (cdr-safe form))) 'quote) (byte-compile-warning-enabled-p 'make-local)) (byte-compile-warn - "`make-variable-buffer-local' should be called at toplevel")) + "`make-variable-buffer-local' not called at toplevel")) (byte-compile-normal-call form)) (put 'make-variable-buffer-local 'byte-hunk-handler 'byte-compile-form-make-variable-buffer-local)