Raymond Toy pushed to branch master at cmucl / cmucl
Commits:
-
aabe67a0
by Raymond Toy at 2024-07-25T13:16:53+00:00
-
8a2dbcb3
by Raymond Toy at 2024-07-25T13:16:57+00:00
1 changed file:
Changes:
... | ... | @@ -3313,8 +3313,8 @@ |
3313 | 3313 | #+(and unicode (not unicode-bootstrap))
|
3314 | 3314 | '(let* ((ac (char-code a))
|
3315 | 3315 | (bc (char-code b)))
|
3316 | - (if (and (<= ac #x7f)
|
|
3317 | - (<= bc #x7f))
|
|
3316 | + (if (and (<= ac +ascii-limit+)
|
|
3317 | + (<= bc +ascii-limit+))
|
|
3318 | 3318 | ;; ASCII
|
3319 | 3319 | (let ((sum (logxor ac bc)))
|
3320 | 3320 | (or (zerop sum)
|