comparison src/coding.c @ 49600:23a1cea22d13

Trailing whitespace deleted.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 04 Feb 2003 14:56:31 +0000
parents 1ad5bfbb831a
children 8e17fbb2ac77 d7ddb3e565de
comparison
equal deleted inserted replaced
49599:5ade352e8d1c 49600:23a1cea22d13
6512 int *single_byte_char_found; 6512 int *single_byte_char_found;
6513 { 6513 {
6514 int c, len, i; 6514 int c, len, i;
6515 Lisp_Object val, ch; 6515 Lisp_Object val, ch;
6516 Lisp_Object prev, tail; 6516 Lisp_Object prev, tail;
6517 6517
6518 while (p < pend) 6518 while (p < pend)
6519 { 6519 {
6520 c = STRING_CHAR_AND_LENGTH (p, pend - p, len); 6520 c = STRING_CHAR_AND_LENGTH (p, pend - p, len);
6521 p += len; 6521 p += len;
6522 if (ASCII_BYTE_P (c)) 6522 if (ASCII_BYTE_P (c))
6633 val = Fcons (Qraw_text, 6633 val = Fcons (Qraw_text,
6634 Fcons (Qemacs_mule, Fcons (Qno_conversion, Qnil))); 6634 Fcons (Qemacs_mule, Fcons (Qno_conversion, Qnil)));
6635 else 6635 else
6636 /* ... and append generic coding systems. */ 6636 /* ... and append generic coding systems. */
6637 val = Fcopy_sequence (XCAR (Vcoding_system_safe_chars)); 6637 val = Fcopy_sequence (XCAR (Vcoding_system_safe_chars));
6638 6638
6639 for (; CONSP (safe_codings); safe_codings = XCDR (safe_codings)) 6639 for (; CONSP (safe_codings); safe_codings = XCDR (safe_codings))
6640 val = Fcons (XCAR (XCAR (safe_codings)), val); 6640 val = Fcons (XCAR (XCAR (safe_codings)), val);
6641 safe_codings = val; 6641 safe_codings = val;
6642 } 6642 }
6643 6643