From: Dave Love Date: Mon, 21 Feb 2000 10:03:46 +0000 (+0000) Subject: (find_charset_in_str): Fix use of `c' instead of `c1'. X-Git-Tag: emacs-pretest-21.0.90~4945 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=65d0af2992a3fa28bd9ac8ca20133220273d5bae;p=emacs.git (find_charset_in_str): Fix use of `c' instead of `c1'. --- diff --git a/src/charset.c b/src/charset.c index 04afa7f3237..c040134f1bb 100644 --- a/src/charset.c +++ b/src/charset.c @@ -773,7 +773,7 @@ find_charset_in_str (str, len, charsets, table, multibyte) Lisp_Object table; int multibyte; { - register int num = 0, c; + register int num = 0; if (! multibyte) { @@ -808,7 +808,7 @@ find_charset_in_str (str, len, charsets, table, multibyte) { int c1 = translate_char (table, -1, charset, c1, c2); if (c1 >= 0) - charset = CHAR_CHARSET (c); + charset = CHAR_CHARSET (c1); } if (!charsets[charset])