aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/charset.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/charset.c b/src/charset.c
index 37d08f249c7..499782011a2 100644
--- a/src/charset.c
+++ b/src/charset.c
@@ -819,7 +819,7 @@ TO-CODE, which are CHARSET code points. */)
819 from = CHARSET_MIN_CODE (cs); 819 from = CHARSET_MIN_CODE (cs);
820 else 820 else
821 { 821 {
822 CHECK_FIXNAT(from_code); 822 CHECK_FIXNAT (from_code);
823 from = XFIXNUM (from_code); 823 from = XFIXNUM (from_code);
824 if (from < CHARSET_MIN_CODE (cs)) 824 if (from < CHARSET_MIN_CODE (cs))
825 from = CHARSET_MIN_CODE (cs); 825 from = CHARSET_MIN_CODE (cs);
@@ -828,7 +828,7 @@ TO-CODE, which are CHARSET code points. */)
828 to = CHARSET_MAX_CODE (cs); 828 to = CHARSET_MAX_CODE (cs);
829 else 829 else
830 { 830 {
831 CHECK_FIXNAT(to_code); 831 CHECK_FIXNAT (to_code);
832 to = XFIXNUM (to_code); 832 to = XFIXNUM (to_code);
833 if (to > CHARSET_MAX_CODE (cs)) 833 if (to > CHARSET_MAX_CODE (cs))
834 to = CHARSET_MAX_CODE (cs); 834 to = CHARSET_MAX_CODE (cs);