]> git.eshelyaron.com Git - emacs.git/commitdiff
Trivial bytecomp.el change.
authorGlenn Morris <rgm@gnu.org>
Thu, 23 Sep 2010 07:55:01 +0000 (00:55 -0700)
committerGlenn Morris <rgm@gnu.org>
Thu, 23 Sep 2010 07:55:01 +0000 (00:55 -0700)
* lisp/emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
(byte-compile-defvar, byte-compile-cl-warn):
Start warnings with lower-case, like the majority.

lisp/ChangeLog
lisp/emacs-lisp/bytecomp.el

index f34e5035a4265c67149d517396db79c855e8516c..367751185545cb3b322905e9d52d8f1a4ae6e11d 100644 (file)
@@ -1,5 +1,9 @@
 2010-09-23  Glenn Morris  <rgm@gnu.org>
 
+       * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
+       (byte-compile-defvar, byte-compile-cl-warn):
+       Start warnings with lower-case, like the majority.
+
        * files.el (auto-mode-alist): Add .xa, .xw, .xsw for ld-script-mode.
 
        * files.el (auto-mode-alist): Prefer C-mode for .xs.  (Bug#7071)
index aca3a54d14f97e4a18d0f58091ae992209a4822f..e6ca7f66546a0d2155f0bc0c47bcfe17f1328206 100644 (file)
@@ -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))