diff options
| author | Martin Rudalics | 2007-12-14 07:38:58 +0000 |
|---|---|---|
| committer | Martin Rudalics | 2007-12-14 07:38:58 +0000 |
| commit | e2e3f1d7ee4564a4ac3f3c45045f9671d6ad6e60 (patch) | |
| tree | 91688e5eba91342baa46cf26e308ee259a2501e1 | |
| parent | 27a4f44552df79f12a8bc2840d5e1e0a3aad892b (diff) | |
| download | emacs-e2e3f1d7ee4564a4ac3f3c45045f9671d6ad6e60.tar.gz emacs-e2e3f1d7ee4564a4ac3f3c45045f9671d6ad6e60.zip | |
(Encoding and I/O): Reword to avoid saying
"visit the current buffer".
| -rw-r--r-- | doc/lispref/ChangeLog | 3 | ||||
| -rw-r--r-- | doc/lispref/nonascii.texi | 18 |
2 files changed, 12 insertions, 9 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 14d8190385d..bfeb88f7830 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2007-12-14 Martin Rudalics <rudalics@gmx.at> | 1 | 2007-12-14 Martin Rudalics <rudalics@gmx.at> |
| 2 | 2 | ||
| 3 | * nonascii.texi (Encoding and I/O): Reword to avoid saying | ||
| 4 | "visit the current buffer". | ||
| 5 | |||
| 3 | * os.texi (System Interface): Fix typo. | 6 | * os.texi (System Interface): Fix typo. |
| 4 | 7 | ||
| 5 | 2007-12-04 Richard Stallman <rms@gnu.org> | 8 | 2007-12-04 Richard Stallman <rms@gnu.org> |
diff --git a/doc/lispref/nonascii.texi b/doc/lispref/nonascii.texi index 7c504aef2cd..16f70f57b9d 100644 --- a/doc/lispref/nonascii.texi +++ b/doc/lispref/nonascii.texi | |||
| @@ -727,15 +727,15 @@ operation finishes the job of choosing a coding system. Very often | |||
| 727 | you will want to find out afterwards which coding system was chosen. | 727 | you will want to find out afterwards which coding system was chosen. |
| 728 | 728 | ||
| 729 | @defvar buffer-file-coding-system | 729 | @defvar buffer-file-coding-system |
| 730 | This buffer-local variable records the coding system that was used to visit | 730 | This buffer-local variable records the coding system used for saving the |
| 731 | the current buffer. It is used for saving the buffer, and for writing part | 731 | buffer and for writing part of the buffer with @code{write-region}. If |
| 732 | of the buffer with @code{write-region}. If the text to be written | 732 | the text to be written cannot be safely encoded using the coding system |
| 733 | cannot be safely encoded using the coding system specified by this | 733 | specified by this variable, these operations select an alternative |
| 734 | variable, these operations select an alternative encoding by calling | 734 | encoding by calling the function @code{select-safe-coding-system} |
| 735 | the function @code{select-safe-coding-system} (@pxref{User-Chosen | 735 | (@pxref{User-Chosen Coding Systems}). If selecting a different encoding |
| 736 | Coding Systems}). If selecting a different encoding requires to ask | 736 | requires to ask the user to specify a coding system, |
| 737 | the user to specify a coding system, @code{buffer-file-coding-system} | 737 | @code{buffer-file-coding-system} is updated to the newly selected coding |
| 738 | is updated to the newly selected coding system. | 738 | system. |
| 739 | 739 | ||
| 740 | @code{buffer-file-coding-system} does @emph{not} affect sending text | 740 | @code{buffer-file-coding-system} does @emph{not} affect sending text |
| 741 | to a subprocess. | 741 | to a subprocess. |