diff options
author | Glenn Morris <rgm@gnu.org> | 2013-05-27 23:52:51 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-05-27 23:52:51 -0700 |
commit | 690e44b238ddf8f1c00c47f54ce1dff0edf1ff7e (patch) | |
tree | 25e7e67b5e79c2fe4e2acf44a80d0747b268fde7 /lisp/emacs-lisp/bytecomp.el | |
parent | ec518f1a35960b9e850373938a251e0a7056ef49 (diff) | |
download | emacs-690e44b238ddf8f1c00c47f54ce1dff0edf1ff7e.tar.gz emacs-690e44b238ddf8f1c00c47f54ce1dff0edf1ff7e.tar.bz2 emacs-690e44b238ddf8f1c00c47f54ce1dff0edf1ff7e.zip |
* lisp/emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
Diffstat (limited to 'lisp/emacs-lisp/bytecomp.el')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 5e20bba2ddb..c910acdbc14 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -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. |