]> git.eshelyaron.com Git - emacs.git/commitdiff
* bytecomp.el (byte-compile-make-variable-buffer-local): Tweak warning.
authorGlenn Morris <rgm@gnu.org>
Fri, 16 Aug 2013 06:53:41 +0000 (23:53 -0700)
committerGlenn Morris <rgm@gnu.org>
Fri, 16 Aug 2013 06:53:41 +0000 (23:53 -0700)
Fixes: debbugs:14926
lisp/ChangeLog
lisp/emacs-lisp/bytecomp.el

index bc51679a9cefa14af576a53b36e08da92816ba90..c35252b184ce1265d257af92e93d59d07855d9a5 100644 (file)
@@ -1,5 +1,8 @@
 2013-08-16  Glenn Morris  <rgm@gnu.org>
 
+       * 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)
 
index 5baef042757688685b1f822d1d4c56c130a9b712..c6612024fa6a4ee558dcd6cc42ba0a4a0743ca2e 100644 (file)
@@ -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)