aboutsummaryrefslogtreecommitdiffstats
path: root/admin/unidata
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/unidata
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/unidata')
-rw-r--r--admin/unidata/unidata-gen.el4
1 files changed, 2 insertions, 2 deletions
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"