aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorPaul Eggert2015-01-03 17:48:23 -0800
committerPaul Eggert2015-01-03 17:49:15 -0800
commitd20f82e6f1ab902469723ebd530ca21bea9cc41b (patch)
treea927fe4309925c0b66e860dfe052baf68560aa8b /doc
parentd94007484ab6b98054b043c1bedeaf7a58eb8606 (diff)
downloademacs-d20f82e6f1ab902469723ebd530ca21bea9cc41b.tar.gz
emacs-d20f82e6f1ab902469723ebd530ca21bea9cc41b.zip
batch write-region no longer says "Wrote FOO"
This cuts down on 'make' chatter a bit. * doc/lispref/files.texi (Writing to Files): * etc/NEWS: Document this. * src/fileio.c (Fwrite_region): Don't output "Wrote /whatever/foo.elc" if noninteractive.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/files.texi5
2 files changed, 8 insertions, 2 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index de1a760496b..941be3cf582 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,8 @@
12015-01-04 Paul Eggert <eggert@cs.ucla.edu>
2
3 batch write-region no longer says "Wrote FOO"
4 * files.texi (Writing to Files): Document this.
5
12014-12-31 Paul Eggert <eggert@cs.ucla.edu> 62014-12-31 Paul Eggert <eggert@cs.ucla.edu>
2 7
3 Less 'make' chatter for Emacs doc 8 Less 'make' chatter for Emacs doc
diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi
index 51d13692fe5..c8500d2f412 100644
--- a/doc/lispref/files.texi
+++ b/doc/lispref/files.texi
@@ -653,8 +653,9 @@ and also calls the functions in the list
653@xref{Format Conversion}. 653@xref{Format Conversion}.
654 654
655Normally, @code{write-region} displays the message @samp{Wrote 655Normally, @code{write-region} displays the message @samp{Wrote
656@var{filename}} in the echo area. If @var{visit} is neither @code{t} 656@var{filename}} in the echo area. This message is inhibited if
657nor @code{nil} nor a string, then this message is inhibited. This 657@var{visit} is neither @code{t} nor @code{nil} nor a string, or if
658Emacs is operating in batch mode (@pxref{Batch mode}). This
658feature is useful for programs that use files for internal purposes, 659feature is useful for programs that use files for internal purposes,
659files that the user does not need to know about. 660files that the user does not need to know about.
660@end deffn 661@end deffn