aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2008-01-16 04:12:22 +0000
committerGlenn Morris2008-01-16 04:12:22 +0000
commitfdecf90749c6594b2d47a93b4e8adb11ffb264e4 (patch)
treef4c122b9fd12962d5f96de2bc1d538e2dbc15919 /src
parent28dd7fcf2ff4f53d5eaaf9c45624e04a6a33a9b1 (diff)
downloademacs-fdecf90749c6594b2d47a93b4e8adb11ffb264e4.tar.gz
emacs-fdecf90749c6594b2d47a93b4e8adb11ffb264e4.zip
(select-safe-coding-system-function): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/coding.c4
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 001819a32a8..e04746694f1 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12008-01-16 Glenn Morris <rgm@gnu.org>
2
3 * coding.c (select-safe-coding-system-function): Doc fix.
4
12008-01-15 Glenn Morris <rgm@gnu.org> 52008-01-15 Glenn Morris <rgm@gnu.org>
2 6
3 * config.in: Revert 2008-01-13 change: this is a generated file. 7 * config.in: Revert 2008-01-13 change: this is a generated file.
diff --git a/src/coding.c b/src/coding.c
index dda3f0f854c..7bfec68d5d1 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -8157,7 +8157,9 @@ Only 128th through 159th elements has a meaning. */);
8157 8157
8158If set, this function is called to force a user to select a proper 8158If set, this function is called to force a user to select a proper
8159coding system which can encode the text in the case that a default 8159coding system which can encode the text in the case that a default
8160coding system used in each operation can't encode the text. 8160coding system used in each operation can't encode the text. The
8161function should take care that the buffer is not modified while
8162the coding system is being selected.
8161 8163
8162The default value is `select-safe-coding-system' (which see). */); 8164The default value is `select-safe-coding-system' (which see). */);
8163 Vselect_safe_coding_system_function = Qnil; 8165 Vselect_safe_coding_system_function = Qnil;