diff options
| author | Richard M. Stallman | 1997-07-22 20:40:29 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-07-22 20:40:29 +0000 |
| commit | a67a9c669446eda58637c7208f72e267f09d384a (patch) | |
| tree | 36d6764186540f485b8186175a44efb616fd39b9 /src/coding.c | |
| parent | 374bda6bbd6a2e40ca31061d45660e570e545d80 (diff) | |
| download | emacs-a67a9c669446eda58637c7208f72e267f09d384a.tar.gz emacs-a67a9c669446eda58637c7208f72e267f09d384a.zip | |
(syms_of_coding): Doc fix.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 10 |
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\ |
| 3763 | If the value is a coding system, it is used for decoding on read operation.\n\ | 3763 | If the value is a coding system, it is used for decoding on read operation.\n\ |
| 3764 | If not, an appropriate element in `coding-system-alist' (which see) is used."); | 3764 | If not, an appropriate element is used from one of the coding system alists:\n\ |
| 3765 | There 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\ |
| 3769 | If the value is a coding system, it is used for encoding on write operation.\n\ | 3771 | If the value is a coding system, it is used for encoding on write operation.\n\ |
| 3770 | If not, an appropriate element in `coding-system-alist' (which see) is used."); | 3772 | If not, an appropriate element is used from one of the coding system alists:\n\ |
| 3773 | There 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, |