comparison src/coding.c @ 19824:ea89a2408bfa

(encode_designation_at_bol): Fix type of local vars C1, C2.
author Richard M. Stallman <rms@gnu.org>
date Tue, 09 Sep 1997 00:46:00 +0000
parents e68cab4f1f70
children c017642863c2
comparison
equal deleted inserted replaced
19823:0c1b4a44db76 19824:ea89a2408bfa
1438 1438
1439 if (NILP (table)) 1439 if (NILP (table))
1440 charset = CHARSET_AT (src); 1440 charset = CHARSET_AT (src);
1441 else 1441 else
1442 { 1442 {
1443 int c_alt, c1, c2; 1443 int c_alt;
1444 unsigned char c1, c2;
1444 1445
1445 SPLIT_STRING(src, bytes, charset, c1, c2); 1446 SPLIT_STRING(src, bytes, charset, c1, c2);
1446 if ((c_alt = unify_char (table, -1, charset, c1, c2)) >= 0) 1447 if ((c_alt = unify_char (table, -1, charset, c1, c2)) >= 0)
1447 charset = CHAR_CHARSET (c_alt); 1448 charset = CHAR_CHARSET (c_alt);
1448 } 1449 }