1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-01 19:30:45 -08:00

(map_charset_chars): Fix arg to map_charset_chars in

when the charset is superset type.
This commit is contained in:
Kenichi Handa 2004-01-27 02:17:46 +00:00
parent 10453be959
commit 111daccfb5

View file

@ -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);
}
}
}