aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/ChangeLog6
-rw-r--r--doc/lispref/processes.texi5
2 files changed, 10 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 5ce7a42ec1c..a2b4b87d5e5 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,5 +1,11 @@
12009-01-10 Eli Zaretskii <eliz@gnu.org> 12009-01-10 Eli Zaretskii <eliz@gnu.org>
2 2
3 * processes.texi (Decoding Output): Document that null bytes force
4 no-conversion for reading process output.
5
6 * files.texi (Reading from Files): Document that null bytes force
7 no-conversion when visiting files.
8
3 * processes.texi (Serial Ports): Improve wording, suggested by 9 * processes.texi (Serial Ports): Improve wording, suggested by
4 RMS. 10 RMS.
5 11
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi
index 265e63b6dee..ae3246f0d29 100644
--- a/doc/lispref/processes.texi
+++ b/doc/lispref/processes.texi
@@ -1388,7 +1388,10 @@ converts the unibyte output to multibyte using
1388system to use (@pxref{Process Information}). Otherwise, the coding 1388system to use (@pxref{Process Information}). Otherwise, the coding
1389system comes from @code{coding-system-for-read}, if that is 1389system comes from @code{coding-system-for-read}, if that is
1390non-@code{nil}; or else from the defaulting mechanism (@pxref{Default 1390non-@code{nil}; or else from the defaulting mechanism (@pxref{Default
1391Coding Systems}). 1391Coding Systems}). If the text output by a process contains null
1392bytes, Emacs by default uses @code{no-conversion} for it; see
1393@ref{Lisp and Coding Systems, inhibit-null-byte-detection}, for how to
1394control this behavior.
1392 1395
1393 @strong{Warning:} Coding systems such as @code{undecided} which 1396 @strong{Warning:} Coding systems such as @code{undecided} which
1394determine the coding system from the data do not work entirely 1397determine the coding system from the data do not work entirely