* lisp/emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.

This commit is contained in:
Glenn Morris 2012-08-14 08:58:46 -07:00
parent 89534796c8
commit 3c3cda1a73
2 changed files with 16 additions and 14 deletions

View file

@ -1,3 +1,7 @@
2012-08-14 Glenn Morris <rgm@gnu.org>
* emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
2012-08-14 Michael Albinus <michael.albinus@gmx.de>
* net/tramp-sh.el (tramp-open-shell): Cache the shell name.
@ -7,8 +11,7 @@
2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
* progmodes/python.el (python-shell-send-string):
(python-shell-send-setup-code): Do not use `format' with
`message'.
(python-shell-send-setup-code): Do not use `format' with `message'.
2012-08-14 Dmitry Gutov <dgutov@yandex.ru>

View file

@ -1621,21 +1621,20 @@ This is normally set in local file variables at the end of the elisp file:
"Recompile FILENAME file if it needs recompilation.
This happens when its `.elc' file is older than itself.
If the `.elc' file exists and is up-to-date, normally this
function *does not* compile FILENAME. However, if the
prefix argument FORCE is set, that means do compile
FILENAME even if the destination already exists and is
up-to-date.
If the `.elc' file exists and is up-to-date, normally this function
*does not* compile FILENAME. If the prefix argument FORCE is non-nil,
however, it compiles FILENAME even if the destination already
exists and is up-to-date.
If the `.elc' file does not exist, normally this function *does
not* compile FILENAME. If ARG is 0, that means
compile the file even if it has never been compiled before.
A nonzero ARG means ask the user.
If the `.elc' file does not exist, normally this function *does not*
compile FILENAME. If optional argument ARG is 0, it compiles
the input file even if the `.elc' file does not exist.
Any other non-nil value of ARG means to ask the user.
If LOAD is non-nil, `load' the file after compiling.
If optional argument LOAD is non-nil, loads the file after compiling.
The value returned is the value returned by `byte-compile-file',
or 'no-byte-compile if the file did not need recompilation."
If compilation is needed, this functions returns the result of
`byte-compile-file'; otherwise it returns 'no-byte-compile."
(interactive
(let ((file buffer-file-name)
(file-name nil)