aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorPaul Eggert2015-01-03 18:28:35 -0800
committerPaul Eggert2015-01-03 18:29:23 -0800
commitcd2d58c1c81d608d6e1aefe1eb8a3d1f1cd60540 (patch)
treeb51ec05c439d54b7b8d4f4b74467ca04528838dd /admin
parentd20f82e6f1ab902469723ebd530ca21bea9cc41b (diff)
downloademacs-cd2d58c1c81d608d6e1aefe1eb8a3d1f1cd60540.tar.gz
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 'admin')
-rw-r--r--admin/ChangeLog6
-rw-r--r--admin/unidata/unidata-gen.el4
2 files changed, 8 insertions, 2 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog
index d7025657e78..2f4d122e0c0 100644
--- a/admin/ChangeLog
+++ b/admin/ChangeLog
@@ -1,3 +1,9 @@
12015-01-04 Paul Eggert <eggert@cs.ucla.edu>
2
3 Less chatter in batch mode
4 * unidata/unidata-gen.el (unidata-gen-files):
5 Don't output messages like "Generating ..." in batch mode.
6
12015-01-02 Paul Eggert <eggert@cs.ucla.edu> 72015-01-02 Paul Eggert <eggert@cs.ucla.edu>
2 8
3 Less 'make' chatter for unidata 9 Less 'make' chatter for unidata
diff --git a/admin/unidata/unidata-gen.el b/admin/unidata/unidata-gen.el
index ca3bae1070a..8af6fa0dd72 100644
--- a/admin/unidata/unidata-gen.el
+++ b/admin/unidata/unidata-gen.el
@@ -1329,7 +1329,7 @@ Property value is a symbol `o' (Open), `c' (Close), or `n' (None)."
1329 (insert (format "(define-char-code-property '%S %S\n %S)\n" 1329 (insert (format "(define-char-code-property '%S %S\n %S)\n"
1330 prop basename docstring)) 1330 prop basename docstring))
1331 (with-temp-buffer 1331 (with-temp-buffer
1332 (message "Generating %s..." file) 1332 (or noninteractive (message "Generating %s..." file))
1333 (when (file-exists-p file) 1333 (when (file-exists-p file)
1334 (insert-file-contents file) 1334 (insert-file-contents file)
1335 (goto-char (point-max)) 1335 (goto-char (point-max))
@@ -1356,7 +1356,7 @@ Property value is a symbol `o' (Open), `c' (Close), or `n' (None)."
1356 ";; End:\n\n" 1356 ";; End:\n\n"
1357 (format ";; %s ends here\n" basename))) 1357 (format ";; %s ends here\n" basename)))
1358 (write-file file) 1358 (write-file file)
1359 (message "Generating %s...done" file)))) 1359 (or noninteractive (message "Generating %s...done" file)))))
1360 (message "Writing %s..." charprop-file) 1360 (message "Writing %s..." charprop-file)
1361 (insert ";; Local Variables:\n" 1361 (insert ";; Local Variables:\n"
1362 ";; coding: utf-8\n" 1362 ";; coding: utf-8\n"