aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-11-28 03:32:15 +0000
committerGlenn Morris2008-11-28 03:32:15 +0000
commita99dceba926c23b8b852772169da73ae6cb33254 (patch)
treef28e2f999601a007986b2f8caa2c833e23fb4c1a
parent08d55d13a771dba40cbecd1d75e60db98bed9a72 (diff)
downloademacs-a99dceba926c23b8b852772169da73ae6cb33254.tar.gz
emacs-a99dceba926c23b8b852772169da73ae6cb33254.zip
(Format Conversion Round-Trip): Improve previous change.
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/files.texi5
2 files changed, 7 insertions, 2 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 636bac2cb1a..e0d465a0a73 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
12008-11-28 Glenn Morris <rgm@gnu.org>
2
3 * files.texi (Format Conversion Round-Trip): Improve previous change.
4
12008-11-26 Chong Yidong <cyd@stupidchicken.com> 52008-11-26 Chong Yidong <cyd@stupidchicken.com>
2 6
3 * modes.texi (Auto Major Mode): Fix example. 7 * modes.texi (Auto Major Mode): Fix example.
diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi
index 8063daa470e..45b911fde9f 100644
--- a/doc/lispref/files.texi
+++ b/doc/lispref/files.texi
@@ -2985,8 +2985,9 @@ in the order of appearance in the list.
2985This command writes the current buffer contents into the file 2985This command writes the current buffer contents into the file
2986@var{file} in format @var{format}, and makes that format the default 2986@var{file} in format @var{format}, and makes that format the default
2987for future saves of the buffer. That is, it sets the buffer-local value 2987for future saves of the buffer. That is, it sets the buffer-local value
2988of @code{buffer-file-format} to @var{format}, and replaces any existing 2988of @code{buffer-file-format} to @var{format}. It then appends any
2989elements (except any with a non-nil @var{preserve} flag; see above). 2989elements of the previous value with a non-nil @var{preserve} flag (see
2990above), if they are not already present in the new value.
2990The argument @var{format} is a list of format names. 2991The argument @var{format} is a list of format names.
2991Except for the @var{format} argument, this command 2992Except for the @var{format} argument, this command
2992is similar to @code{write-file}. In particular, @var{confirm} has the 2993is similar to @code{write-file}. In particular, @var{confirm} has the