1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-28 08:11:05 -08:00

* lisp/emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.

This commit is contained in:
Glenn Morris 2013-05-27 23:52:51 -07:00
parent ec518f1a35
commit 690e44b238
2 changed files with 7 additions and 2 deletions

View 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> 2013-05-27 Juri Linkov <juri@jurta.org>
* replace.el (replace-search): New function with code moved out * replace.el (replace-search): New function with code moved out

View file

@ -289,10 +289,11 @@ Elements of the list may be:
obsolete obsolete variables and functions. obsolete obsolete variables and functions.
noruntime functions that may not be defined at runtime (typically noruntime functions that may not be defined at runtime (typically
defined only under `eval-when-compile'). defined only under `eval-when-compile').
cl-functions calls to runtime functions from the CL package (as cl-functions calls to runtime functions (as distinguished from macros and
distinguished from macros and aliases). aliases) from the old CL package (not the newer cl-lib).
interactive-only interactive-only
commands that normally shouldn't be called from Lisp code. 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. make-local calls to make-variable-buffer-local that may be incorrect.
mapcar mapcar called for effect. mapcar mapcar called for effect.
constants let-binding of, or assignment to, constants/nonvariables. constants let-binding of, or assignment to, constants/nonvariables.