comparison src/coding.c @ 22329:4786b00d2973

(detect_coding_mask): Initilize local variable C.
author Kenichi Handa <handa@m17n.org>
date Tue, 02 Jun 1998 03:54:18 +0000
parents 1deb7d79af00
children 572ba933a4bf
comparison
equal deleted inserted replaced
22328:874f007a7d9c 22329:4786b00d2973
3204 3204
3205 if (src >= src_end) 3205 if (src >= src_end)
3206 /* We found nothing other than ASCII. There's nothing to do. */ 3206 /* We found nothing other than ASCII. There's nothing to do. */
3207 return 0; 3207 return 0;
3208 3208
3209 c = *src;
3209 /* The text seems to be encoded in some multilingual coding system. 3210 /* The text seems to be encoded in some multilingual coding system.
3210 Now, try to find in which coding system the text is encoded. */ 3211 Now, try to find in which coding system the text is encoded. */
3211 if (c < 0x80) 3212 if (c < 0x80)
3212 { 3213 {
3213 /* i.e. (c == ISO_CODE_ESC || c == ISO_CODE_SI || c == ISO_CODE_SO) */ 3214 /* i.e. (c == ISO_CODE_ESC || c == ISO_CODE_SI || c == ISO_CODE_SO) */