diff options
author | Glenn Morris <rgm@gnu.org> | 2013-08-15 23:53:41 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-08-15 23:53:41 -0700 |
commit | 58c4682f76b2417640a6789aaa8ee0ad9ab4bad9 (patch) | |
tree | 377e40a8b1b99353d94df267a5180363bc1032da /lisp/emacs-lisp/bytecomp.el | |
parent | 57953f498ac4bab8badb1986fd333b679c57b71a (diff) | |
download | emacs-58c4682f76b2417640a6789aaa8ee0ad9ab4bad9.tar.gz emacs-58c4682f76b2417640a6789aaa8ee0ad9ab4bad9.tar.bz2 emacs-58c4682f76b2417640a6789aaa8ee0ad9ab4bad9.zip |
* bytecomp.el (byte-compile-make-variable-buffer-local): Tweak warning.
Fixes: debbugs:14926
Diffstat (limited to 'lisp/emacs-lisp/bytecomp.el')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 |
1 files changed, 1 insertions, 1 deletions
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) |