diff options
| author | Glenn Morris | 2008-11-28 03:32:15 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-11-28 03:32:15 +0000 |
| commit | a99dceba926c23b8b852772169da73ae6cb33254 (patch) | |
| tree | f28e2f999601a007986b2f8caa2c833e23fb4c1a | |
| parent | 08d55d13a771dba40cbecd1d75e60db98bed9a72 (diff) | |
| download | emacs-a99dceba926c23b8b852772169da73ae6cb33254.tar.gz emacs-a99dceba926c23b8b852772169da73ae6cb33254.zip | |
(Format Conversion Round-Trip): Improve previous change.
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/files.texi | 5 |
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 @@ | |||
| 1 | 2008-11-28 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * files.texi (Format Conversion Round-Trip): Improve previous change. | ||
| 4 | |||
| 1 | 2008-11-26 Chong Yidong <cyd@stupidchicken.com> | 5 | 2008-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. | |||
| 2985 | This command writes the current buffer contents into the file | 2985 | This 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 |
| 2987 | for future saves of the buffer. That is, it sets the buffer-local value | 2987 | for future saves of the buffer. That is, it sets the buffer-local value |
| 2988 | of @code{buffer-file-format} to @var{format}, and replaces any existing | 2988 | of @code{buffer-file-format} to @var{format}. It then appends any |
| 2989 | elements (except any with a non-nil @var{preserve} flag; see above). | 2989 | elements of the previous value with a non-nil @var{preserve} flag (see |
| 2990 | above), if they are not already present in the new value. | ||
| 2990 | The argument @var{format} is a list of format names. | 2991 | The argument @var{format} is a list of format names. |
| 2991 | Except for the @var{format} argument, this command | 2992 | Except for the @var{format} argument, this command |
| 2992 | is similar to @code{write-file}. In particular, @var{confirm} has the | 2993 | is similar to @code{write-file}. In particular, @var{confirm} has the |