diff options
author | Kenichi Handa <handa@m17n.org> | 2010-09-27 14:42:43 +0900 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2010-09-27 14:42:43 +0900 |
commit | b3253cd4b4bcbe1ab4ad1fdc98b30c33af70332c (patch) | |
tree | 4d55005558f96dfb44bfcd746098ed0882aff2d0 /lisp/emacs-lisp/bytecomp.el | |
parent | 4be9765d4bad14d68cdfee2a2c6afe1001d9516a (diff) | |
parent | e5fa38990bca723fc3ef1d0ede792e8ff84b84f7 (diff) | |
download | emacs-b3253cd4b4bcbe1ab4ad1fdc98b30c33af70332c.tar.gz emacs-b3253cd4b4bcbe1ab4ad1fdc98b30c33af70332c.tar.bz2 emacs-b3253cd4b4bcbe1ab4ad1fdc98b30c33af70332c.zip |
merge trunk
Diffstat (limited to 'lisp/emacs-lisp/bytecomp.el')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index aca3a54d14f..e6ca7f66546 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -1343,7 +1343,7 @@ extra args." (not (and (eq (get func 'byte-compile) 'cl-byte-compile-compiler-macro) (string-match "\\`c[ad]+r\\'" (symbol-name func))))) - (byte-compile-warn "Function `%s' from cl package called at runtime" + (byte-compile-warn "function `%s' from cl package called at runtime" func))) form) @@ -2156,7 +2156,7 @@ list that represents a doc string reference. (when (and (symbolp (nth 1 form)) (not (string-match "[-*/:$]" (symbol-name (nth 1 form)))) (byte-compile-warning-enabled-p 'lexical)) - (byte-compile-warn "Global/dynamic var `%s' lacks a prefix" + (byte-compile-warn "global/dynamic var `%s' lacks a prefix" (nth 1 form))) (push (nth 1 form) byte-compile-bound-variables) (if (eq (car form) 'defconst) @@ -3812,7 +3812,7 @@ that suppresses all warnings during execution of BODY." (when (and (symbolp (nth 1 form)) (not (string-match "[-*/:$]" (symbol-name (nth 1 form)))) (byte-compile-warning-enabled-p 'lexical)) - (byte-compile-warn "Global/dynamic var `%s' lacks a prefix" + (byte-compile-warn "global/dynamic var `%s' lacks a prefix" (nth 1 form))) (let ((fun (nth 0 form)) (var (nth 1 form)) |