comparison src/coding.c @ 18910:50c89868f8c7

(syms_of_coding): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Tue, 22 Jul 1997 20:40:29 +0000
parents f55d91d45bde
children 302a7b2a6948
comparison
equal deleted inserted replaced
18909:e8c770e7f81d 18910:50c89868f8c7
3759 } 3759 }
3760 3760
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,
3778 "*Non-nil inhibit code conversion of end-of-line format in any cases."); 3782 "*Non-nil inhibit code conversion of end-of-line format in any cases.");
3779 inhibit_eol_conversion = 0; 3783 inhibit_eol_conversion = 0;