aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1993-07-27 22:49:27 +0000
committerRichard M. Stallman <[email protected]>1993-07-27 22:49:27 +0000
commit691e7e763570e70c02e8caa18b1602028041c611 (patch)
treeec91c597b8c35b45a5bf2d8baf1ff28a8964c0d1 /lisp/emacs-lisp
parenta646e5200b910a40893ce7eba3784f4f7aae3444 (diff)
(byte-recompile-directory): Doc fix.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/bytecomp.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index b67be5ce60..be628b8c6a 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -1055,11 +1055,14 @@ otherwise pop it")
(defun byte-recompile-directory (directory &optional arg)
"Recompile every `.el' file in DIRECTORY that needs recompilation.
This is if a `.elc' file exists but is older than the `.el' file.
+Files in subdirectories of DIRECTORY are processed also.
If the `.elc' file does not exist, normally the `.el' file is *not* compiled.
But a prefix argument (optional second arg) means ask user,
for each such `.el' file, whether to compile it. Prefix argument 0 means
-don't ask and compile the file anyway."
+don't ask and compile the file anyway.
+
+A nonzero prefix argument also means ask about each subdirectory."
(interactive "DByte recompile directory: \nP")
(if arg
(setq arg (prefix-numeric-value arg)))