1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-17 10:06:13 +00:00

(encode_designation_at_bol): Fix type of local vars C1, C2.

This commit is contained in:
Richard M. Stallman 1997-09-09 00:46:00 +00:00
parent 0db1ff2312
commit 35cb86869d

View File

@ -1440,7 +1440,8 @@ encode_designation_at_bol (coding, table, src, src_end, dstp)
charset = CHARSET_AT (src);
else
{
int c_alt, c1, c2;
int c_alt;
unsigned char c1, c2;
SPLIT_STRING(src, bytes, charset, c1, c2);
if ((c_alt = unify_char (table, -1, charset, c1, c2)) >= 0)