diff options
| author | Glenn Morris | 2013-05-27 23:52:51 -0700 |
|---|---|---|
| committer | Glenn Morris | 2013-05-27 23:52:51 -0700 |
| commit | 690e44b238ddf8f1c00c47f54ce1dff0edf1ff7e (patch) | |
| tree | 25e7e67b5e79c2fe4e2acf44a80d0747b268fde7 | |
| parent | ec518f1a35960b9e850373938a251e0a7056ef49 (diff) | |
| download | emacs-690e44b238ddf8f1c00c47f54ce1dff0edf1ff7e.tar.gz emacs-690e44b238ddf8f1c00c47f54ce1dff0edf1ff7e.zip | |
* lisp/emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 084afe4f31a..da2c6a14afc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-05-28 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix. | ||
| 4 | |||
| 1 | 2013-05-27 Juri Linkov <juri@jurta.org> | 5 | 2013-05-27 Juri Linkov <juri@jurta.org> |
| 2 | 6 | ||
| 3 | * replace.el (replace-search): New function with code moved out | 7 | * replace.el (replace-search): New function with code moved out |
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: | |||
| 289 | obsolete obsolete variables and functions. | 289 | obsolete obsolete variables and functions. |
| 290 | noruntime functions that may not be defined at runtime (typically | 290 | noruntime functions that may not be defined at runtime (typically |
| 291 | defined only under `eval-when-compile'). | 291 | defined only under `eval-when-compile'). |
| 292 | cl-functions calls to runtime functions from the CL package (as | 292 | cl-functions calls to runtime functions (as distinguished from macros and |
| 293 | distinguished from macros and aliases). | 293 | aliases) from the old CL package (not the newer cl-lib). |
| 294 | interactive-only | 294 | interactive-only |
| 295 | commands that normally shouldn't be called from Lisp code. | 295 | commands that normally shouldn't be called from Lisp code. |
| 296 | lexical global/dynamic variables lacking a prefix. | ||
| 296 | make-local calls to make-variable-buffer-local that may be incorrect. | 297 | make-local calls to make-variable-buffer-local that may be incorrect. |
| 297 | mapcar mapcar called for effect. | 298 | mapcar mapcar called for effect. |
| 298 | constants let-binding of, or assignment to, constants/nonvariables. | 299 | constants let-binding of, or assignment to, constants/nonvariables. |