aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
authorRichard M. Stallman1997-07-22 20:40:29 +0000
committerRichard M. Stallman1997-07-22 20:40:29 +0000
commita67a9c669446eda58637c7208f72e267f09d384a (patch)
tree36d6764186540f485b8186175a44efb616fd39b9 /src/coding.c
parent374bda6bbd6a2e40ca31061d45660e570e545d80 (diff)
downloademacs-a67a9c669446eda58637c7208f72e267f09d384a.tar.gz
emacs-a67a9c669446eda58637c7208f72e267f09d384a.zip
(syms_of_coding): Doc fix.
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/coding.c b/src/coding.c
index feae107298e..bd824bceee2 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -3761,17 +3761,21 @@ syms_of_coding ()
3761 DEFVAR_LISP ("coding-system-for-read", &Vcoding_system_for_read, 3761 DEFVAR_LISP ("coding-system-for-read", &Vcoding_system_for_read,
3762 "A variable of internal use only.\n\ 3762 "A variable of internal use only.\n\
3763If the value is a coding system, it is used for decoding on read operation.\n\ 3763If the value is a coding system, it is used for decoding on read operation.\n\
3764If not, an appropriate element in `coding-system-alist' (which see) is used."); 3764If not, an appropriate element is used from one of the coding system alists:\n\
3765There are three of such tables, `file-coding-system-alist',\n\
3766`process-coding-system-alist', and `network-coding-system-alist'.");
3765 Vcoding_system_for_read = Qnil; 3767 Vcoding_system_for_read = Qnil;
3766 3768
3767 DEFVAR_LISP ("coding-system-for-write", &Vcoding_system_for_write, 3769 DEFVAR_LISP ("coding-system-for-write", &Vcoding_system_for_write,
3768 "A variable of internal use only.\n\ 3770 "A variable of internal use only.\n\
3769If the value is a coding system, it is used for encoding on write operation.\n\ 3771If the value is a coding system, it is used for encoding on write operation.\n\
3770If not, an appropriate element in `coding-system-alist' (which see) is used."); 3772If not, an appropriate element is used from one of the coding system alists:\n\
3773There are three of such tables, `file-coding-system-alist',\n\
3774`process-coding-system-alist', and `network-coding-system-alist'.");
3771 Vcoding_system_for_write = Qnil; 3775 Vcoding_system_for_write = Qnil;
3772 3776
3773 DEFVAR_LISP ("last-coding-system-used", &Vlast_coding_system_used, 3777 DEFVAR_LISP ("last-coding-system-used", &Vlast_coding_system_used,
3774 "Coding-system used in the latest file or process I/O."); 3778 "Coding system used in the latest file or process I/O.");
3775 Vlast_coding_system_used = Qnil; 3779 Vlast_coding_system_used = Qnil;
3776 3780
3777 DEFVAR_BOOL ("inhibit-eol-conversion", &inhibit_eol_conversion, 3781 DEFVAR_BOOL ("inhibit-eol-conversion", &inhibit_eol_conversion,