comparison src/coding.c @ 50896:0aba658cfdd2

(Vlast_coding_system_used): Doc fix.
author Dave Love <fx@gnu.org>
date Thu, 08 May 2003 17:49:05 +0000
parents 43076e9d9aaa
children 269d016f45bd
comparison
equal deleted inserted replaced
50895:8b4ee8a18c21 50896:0aba658cfdd2
6507 encodable = 1; 6507 encodable = 1;
6508 if (encodable) 6508 if (encodable)
6509 prev = tail; 6509 prev = tail;
6510 else 6510 else
6511 { 6511 {
6512 /* Exclued this coding system from SAFE_CODINGS. */ 6512 /* Exclude this coding system from SAFE_CODINGS. */
6513 if (EQ (tail, safe_codings)) 6513 if (EQ (tail, safe_codings))
6514 safe_codings = XCDR (safe_codings); 6514 safe_codings = XCDR (safe_codings);
6515 else 6515 else
6516 XSETCDR (prev, XCDR (tail)); 6516 XSETCDR (prev, XCDR (tail));
6517 } 6517 }
7551 For output to files, if the above procedure does not specify a coding system, 7551 For output to files, if the above procedure does not specify a coding system,
7552 the value of `buffer-file-coding-system' is used. */); 7552 the value of `buffer-file-coding-system' is used. */);
7553 Vcoding_system_for_write = Qnil; 7553 Vcoding_system_for_write = Qnil;
7554 7554
7555 DEFVAR_LISP ("last-coding-system-used", &Vlast_coding_system_used, 7555 DEFVAR_LISP ("last-coding-system-used", &Vlast_coding_system_used,
7556 doc: /* Coding system used in the latest file or process I/O. */); 7556 doc: /* Coding system used in the latest file or process I/O.
7557 Also set by `encode-coding-region', `decode-coding-region',
7558 `encode-coding-string' and `decode-coding-string'. */);
7557 Vlast_coding_system_used = Qnil; 7559 Vlast_coding_system_used = Qnil;
7558 7560
7559 DEFVAR_BOOL ("inhibit-eol-conversion", &inhibit_eol_conversion, 7561 DEFVAR_BOOL ("inhibit-eol-conversion", &inhibit_eol_conversion,
7560 doc: /* *Non-nil means always inhibit code conversion of end-of-line format. 7562 doc: /* *Non-nil means always inhibit code conversion of end-of-line format.
7561 See info node `Coding Systems' and info node `Text and Binary' concerning 7563 See info node `Coding Systems' and info node `Text and Binary' concerning