diff 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
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)