summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-09-09 00:46:00 +0000
committerRichard M. Stallman <rms@gnu.org>1997-09-09 00:46:00 +0000
commitca3796ab309a1a3128d79164f528c3882ca3d2e2 (patch)
tree09b5acea457ad812367ad06f06d26766a7d5da77
parenta1c46b4dc9894c23d0aafeca9d987d00a6354fd9 (diff)
downloademacs-ca3796ab309a1a3128d79164f528c3882ca3d2e2.tar.gz
(encode_designation_at_bol): Fix type of local vars C1, C2.
-rw-r--r--src/coding.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c
index 378f5d5de0a..e22581b2c03 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -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)