]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
authorGlenn Morris <rgm@gnu.org>
Tue, 28 May 2013 06:52:51 +0000 (23:52 -0700)
committerGlenn Morris <rgm@gnu.org>
Tue, 28 May 2013 06:52:51 +0000 (23:52 -0700)
lisp/ChangeLog
lisp/emacs-lisp/bytecomp.el

index 084afe4f31aee85aed5f308956d0e698536c816d..da2c6a14afcf8f8824d6d892866f172ddcbc39e2 100644 (file)
@@ -1,3 +1,7 @@
+2013-05-28  Glenn Morris  <rgm@gnu.org>
+
+       * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
+
 2013-05-27  Juri Linkov  <juri@jurta.org>
 
        * replace.el (replace-search): New function with code moved out
index 5e20bba2ddbc0a874a0186100f28ad4542ba76ae..c910acdbc145a20f4a358078fdc2dd0b6a4e73f9 100644 (file)
@@ -289,10 +289,11 @@ Elements of the list may be:
   obsolete    obsolete variables and functions.
   noruntime   functions that may not be defined at runtime (typically
               defined only under `eval-when-compile').
-  cl-functions    calls to runtime functions from the CL package (as
-                 distinguished from macros and aliases).
+  cl-functions    calls to runtime functions (as distinguished from macros and
+                  aliases) from the old CL package (not the newer cl-lib).
   interactive-only
              commands that normally shouldn't be called from Lisp code.
+  lexical     global/dynamic variables lacking a prefix.
   make-local  calls to make-variable-buffer-local that may be incorrect.
   mapcar      mapcar called for effect.
   constants   let-binding of, or assignment to, constants/nonvariables.