From: Kenichi Handa Date: Tue, 27 Jan 2004 02:17:46 +0000 (+0000) Subject: (map_charset_chars): Fix arg to map_charset_chars in X-Git-Tag: emacs-pretest-23.0.90~8295^2~1590 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=111daccfb57e6598f3364d1d1c6ee74edabc709d;p=emacs.git (map_charset_chars): Fix arg to map_charset_chars in when the charset is superset type. --- diff --git a/src/charset.c b/src/charset.c index 8fdf7bc9233..151ae006607 100644 --- a/src/charset.c +++ b/src/charset.c @@ -640,7 +640,8 @@ map_charset_chars (c_function, function, arg, this_from = CHARSET_MIN_CODE (charset); if (this_to > CHARSET_MAX_CODE (charset)) this_to = CHARSET_MAX_CODE (charset); - map_charset_chars (c_function, function, arg, charset, from, to); + map_charset_chars (c_function, function, arg, charset, + this_from, this_to); } } }