diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-01-03 18:28:35 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-01-03 18:29:23 -0800 |
commit | cd2d58c1c81d608d6e1aefe1eb8a3d1f1cd60540 (patch) | |
tree | b51ec05c439d54b7b8d4f4b74467ca04528838dd /lisp/emacs-lisp/bytecomp.el | |
parent | d20f82e6f1ab902469723ebd530ca21bea9cc41b (diff) | |
download | emacs-cd2d58c1c81d608d6e1aefe1eb8a3d1f1cd60540.tar.gz emacs-cd2d58c1c81d608d6e1aefe1eb8a3d1f1cd60540.tar.bz2 emacs-cd2d58c1c81d608d6e1aefe1eb8a3d1f1cd60540.zip |
Less 'make' chatter in batch mode
* admin/unidata/unidata-gen.el (unidata-gen-files):
* lisp/emacs-lisp/autoload.el (autoload-generate-file-autoloads):
* lisp/emacs-lisp/bytecomp.el (byte-compile-file):
* lisp/files.el (save-buffer, basic-save-buffer):
* lisp/international/quail.el (quail-update-leim-list-file):
Don't output messages like "Generating ..." in batch mode.
Diffstat (limited to 'lisp/emacs-lisp/bytecomp.el')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 4c694adfa23..1acd4fe76b2 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -1858,7 +1858,7 @@ The value is non-nil if there were no errors, nil if errors." ;; recompiled). Previously this was accomplished by ;; deleting target-file before writing it. (rename-file tempfile target-file t) - (message "Wrote %s" target-file)) + (or noninteractive (message "Wrote %s" target-file))) ;; This is just to give a better error message than write-region (signal 'file-error (list "Opening output file" |