]> git.eshelyaron.com Git - emacs.git/commitdiff
(map_charset_chars): Fix arg to map_charset_chars in
authorKenichi Handa <handa@m17n.org>
Tue, 27 Jan 2004 02:17:46 +0000 (02:17 +0000)
committerKenichi Handa <handa@m17n.org>
Tue, 27 Jan 2004 02:17:46 +0000 (02:17 +0000)
when the charset is superset type.

src/charset.c

index 8fdf7bc92338abb8412c013f40b0802c9bcbd43d..151ae00660703cd289e1da03fac0b30ae331e8d4 100644 (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);
        }
     }
 }