diff options
| author | Eli Zaretskii | 2024-11-30 12:55:19 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2024-11-30 12:55:19 +0200 |
| commit | 7c90ffcf8698a55229c47845dbdb2dc6cfa9bb6f (patch) | |
| tree | 3cf5e443346ebc7f3ad50ee478760de249d3b0b4 /src | |
| parent | 2125e188ad806134dfc81408822208d75d7f3b5a (diff) | |
| download | emacs-7c90ffcf8698a55229c47845dbdb2dc6cfa9bb6f.tar.gz emacs-7c90ffcf8698a55229c47845dbdb2dc6cfa9bb6f.zip | |
; * src/charset.c (Fmap_charset_chars): Fix last change (bug#74555).
Diffstat (limited to 'src')
| -rw-r--r-- | src/charset.c | 4 |
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); |