; * src/charset.c (Fmap_charset_chars): Fix last change (bug#74555).
This commit is contained in:
parent
2125e188ad
commit
7c90ffcf86
1 changed files with 2 additions and 2 deletions
|
@ -819,7 +819,7 @@ TO-CODE, which are CHARSET code points. */)
|
|||
from = CHARSET_MIN_CODE (cs);
|
||||
else
|
||||
{
|
||||
CHECK_FIXNAT(from_code);
|
||||
CHECK_FIXNAT (from_code);
|
||||
from = XFIXNUM (from_code);
|
||||
if (from < CHARSET_MIN_CODE (cs))
|
||||
from = CHARSET_MIN_CODE (cs);
|
||||
|
@ -828,7 +828,7 @@ TO-CODE, which are CHARSET code points. */)
|
|||
to = CHARSET_MAX_CODE (cs);
|
||||
else
|
||||
{
|
||||
CHECK_FIXNAT(to_code);
|
||||
CHECK_FIXNAT (to_code);
|
||||
to = XFIXNUM (to_code);
|
||||
if (to > CHARSET_MAX_CODE (cs))
|
||||
to = CHARSET_MAX_CODE (cs);
|
||||
|
|
Loading…
Add table
Reference in a new issue