aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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}