# HG changeset patch # User Kenichi Handa # Date 1075169866 0 # Node ID b07ce3d8fc4e92b0bfe37d6f4916b6f096eb6309 # Parent 482c1594000067f4667d633c44ef288a7a07cf07 (map_charset_chars): Fix arg to map_charset_chars in when the charset is superset type. diff -r 482c15940000 -r b07ce3d8fc4e src/charset.c --- a/src/charset.c Tue Jan 27 02:16:25 2004 +0000 +++ b/src/charset.c Tue Jan 27 02:17:46 2004 +0000 @@ -640,7 +640,8 @@ 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); } } }