diff options
| author | Richard M. Stallman | 1993-07-27 22:49:27 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-07-27 22:49:27 +0000 |
| commit | 691e7e763570e70c02e8caa18b1602028041c611 (patch) | |
| tree | ec91c597b8c35b45a5bf2d8baf1ff28a8964c0d1 | |
| parent | a646e5200b910a40893ce7eba3784f4f7aae3444 (diff) | |
| download | emacs-691e7e763570e70c02e8caa18b1602028041c611.tar.gz emacs-691e7e763570e70c02e8caa18b1602028041c611.zip | |
(byte-recompile-directory): Doc fix.
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index b67be5ce60c..be628b8c6a6 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el | |||
| @@ -1055,11 +1055,14 @@ otherwise pop it") | |||
| 1055 | (defun byte-recompile-directory (directory &optional arg) | 1055 | (defun byte-recompile-directory (directory &optional arg) |
| 1056 | "Recompile every `.el' file in DIRECTORY that needs recompilation. | 1056 | "Recompile every `.el' file in DIRECTORY that needs recompilation. |
| 1057 | This is if a `.elc' file exists but is older than the `.el' file. | 1057 | This is if a `.elc' file exists but is older than the `.el' file. |
| 1058 | Files in subdirectories of DIRECTORY are processed also. | ||
| 1058 | 1059 | ||
| 1059 | If the `.elc' file does not exist, normally the `.el' file is *not* compiled. | 1060 | If the `.elc' file does not exist, normally the `.el' file is *not* compiled. |
| 1060 | But a prefix argument (optional second arg) means ask user, | 1061 | But a prefix argument (optional second arg) means ask user, |
| 1061 | for each such `.el' file, whether to compile it. Prefix argument 0 means | 1062 | for each such `.el' file, whether to compile it. Prefix argument 0 means |
| 1062 | don't ask and compile the file anyway." | 1063 | don't ask and compile the file anyway. |
| 1064 | |||
| 1065 | A nonzero prefix argument also means ask about each subdirectory." | ||
| 1063 | (interactive "DByte recompile directory: \nP") | 1066 | (interactive "DByte recompile directory: \nP") |
| 1064 | (if arg | 1067 | (if arg |
| 1065 | (setq arg (prefix-numeric-value arg))) | 1068 | (setq arg (prefix-numeric-value arg))) |