aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2004-01-27 02:17:46 +0000
committerKenichi Handa2004-01-27 02:17:46 +0000
commit111daccfb57e6598f3364d1d1c6ee74edabc709d (patch)
treea6c4aca3d4dd7372add8c8d7162f7d0ae995db84 /src
parent10453be959b3656f9ed57336eab4e3ca77613304 (diff)
downloademacs-111daccfb57e6598f3364d1d1c6ee74edabc709d.tar.gz
emacs-111daccfb57e6598f3364d1d1c6ee74edabc709d.zip
(map_charset_chars): Fix arg to map_charset_chars in
when the charset is superset type.
Diffstat (limited to 'src')
-rw-r--r--src/charset.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/charset.c b/src/charset.c
index 8fdf7bc9233..151ae006607 100644
--- a/src/charset.c
+++ b/src/charset.c
@@ -640,7 +640,8 @@ map_charset_chars (c_function, function, arg,
640 this_from = CHARSET_MIN_CODE (charset); 640 this_from = CHARSET_MIN_CODE (charset);
641 if (this_to > CHARSET_MAX_CODE (charset)) 641 if (this_to > CHARSET_MAX_CODE (charset))
642 this_to = CHARSET_MAX_CODE (charset); 642 this_to = CHARSET_MAX_CODE (charset);
643 map_charset_chars (c_function, function, arg, charset, from, to); 643 map_charset_chars (c_function, function, arg, charset,
644 this_from, this_to);
644 } 645 }
645 } 646 }
646} 647}