changeset 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 0c1b4a44db76
children cdfaf8ce5208
files src/coding.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/coding.c	Tue Sep 09 00:21:07 1997 +0000
+++ b/src/coding.c	Tue Sep 09 00:46:00 1997 +0000
@@ -1440,7 +1440,8 @@
 	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)