Mercurial > emacs
diff src/charset.c @ 89758:b07ce3d8fc4e
(map_charset_chars): Fix arg to map_charset_chars in
when the charset is superset type.
| author | Kenichi Handa <handa@m17n.org> |
|---|---|
| date | Tue, 27 Jan 2004 02:17:46 +0000 |
| parents | d3302f68a7cf |
| children | cbb58e8c4481 |
line wrap: on
line diff
--- 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); } } }
