Raymond Toy pushed to branch master at cmucl / cmucl

Commits:

1 changed file:

Changes:

  • src/compiler/srctran.lisp
    ... ... @@ -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)