diff options
| author | Richard M. Stallman | 1993-08-02 04:47:30 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-08-02 04:47:30 +0000 |
| commit | 47082fcd1b3eccac4e934795bcec9b5192f068e2 (patch) | |
| tree | 29dc84d334af5f0e5d51bf5551fa6d509647a1b2 | |
| parent | 552775bd93ad39944730fa504f385412d24fe46b (diff) | |
| download | emacs-47082fcd1b3eccac4e934795bcec9b5192f068e2.tar.gz emacs-47082fcd1b3eccac4e934795bcec9b5192f068e2.zip | |
(byte-recompile-directory): At end of compiling a file,
put back the "Checking DIR..." message.
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index be628b8c6a6..1bf1b878039 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el | |||
| @@ -1100,6 +1100,8 @@ A nonzero prefix argument also means ask about each subdirectory." | |||
| 1100 | (progn (if (and noninteractive (not byte-compile-verbose)) | 1100 | (progn (if (and noninteractive (not byte-compile-verbose)) |
| 1101 | (message "Compiling %s..." source)) | 1101 | (message "Compiling %s..." source)) |
| 1102 | (byte-compile-file source) | 1102 | (byte-compile-file source) |
| 1103 | (or noninteractive | ||
| 1104 | (message "Checking %s..." directory)) | ||
| 1103 | (setq file-count (1+ file-count)) | 1105 | (setq file-count (1+ file-count)) |
| 1104 | (if (not (eq last-dir directory)) | 1106 | (if (not (eq last-dir directory)) |
| 1105 | (setq last-dir directory | 1107 | (setq last-dir directory |