changeset 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 482c15940000
children d11866e9fbf4
files src/charset.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
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);
 	}
     }
 }