From 111daccfb57e6598f3364d1d1c6ee74edabc709d Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Tue, 27 Jan 2004 02:17:46 +0000 Subject: [PATCH] (map_charset_chars): Fix arg to map_charset_chars in when the charset is superset type. --- src/charset.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); } } } -- 2.39.5