fix range check in unicode-string-width from edit-line

This commit is contained in:
Alex Shinn 2019-09-13 23:10:39 +08:00
parent aa85d53989
commit 713c6f7135

View file

@ -284,7 +284,7 @@
((<= #xFFE0 ci #xFFE6) 2)
((<= #x20000 ci #x30000) 2)
;; non-spacing mark (Mn) ranges from UnicodeData.txt
((<= #x0300 ci #x3029)
((<= #x0300 ci #x06bd) ; #x3029
;; inlined bit-vector-ref for portability
(let* ((i (- ci #x0300))
(byte (quotient i 8))