Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
3c3cda1a
Commit
3c3cda1a
authored
Aug 14, 2012
by
Glenn Morris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* lisp/emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
parent
89534796
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
14 deletions
+16
-14
lisp/ChangeLog
lisp/ChangeLog
+5
-2
lisp/emacs-lisp/bytecomp.el
lisp/emacs-lisp/bytecomp.el
+11
-12
No files found.
lisp/ChangeLog
View file @
3c3cda1a
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>
...
...
lisp/emacs-lisp/bytecomp.el
View file @
3c3cda1a
...
...
@@ -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 mean
s
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 compile
s
the input
file even if
the `.elc' file does not exist
.
A
ny 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, load
s
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 re
compil
ation
."
If compilation is needed, this functions returns the result of
`
byte-compile
-file'; otherwise it returns 'no-byte-
compil
e
."
(
interactive
(
let
((
file
buffer-file-name
)
(
file-name
nil
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment