quick fix for incorrect reading of subsequent* characters in a
symbol.
This commit is contained in:
parent
2b4e89bcf0
commit
e1215998e0
|
@ -104,7 +104,8 @@
|
||||||
(memq c '(#\! #\$ #\% #\& #\* #\/ #\: #\< #\= #\> #\? #\^ #\_ #\~))))
|
(memq c '(#\! #\$ #\% #\& #\* #\/ #\: #\< #\= #\> #\? #\^ #\_ #\~))))
|
||||||
(define subsequent?
|
(define subsequent?
|
||||||
(lambda (c)
|
(lambda (c)
|
||||||
(or (initial? c) (digit? c) (special-subsequent? c))))
|
(or (initial? c) (digit? c) (special-subsequent? c)
|
||||||
|
(memq (char-general-category c) '(Nd Mc Me)))))
|
||||||
(define special-subsequent?
|
(define special-subsequent?
|
||||||
(lambda (c)
|
(lambda (c)
|
||||||
(memq c '(#\+ #\- #\. #\@))))
|
(memq c '(#\+ #\- #\. #\@))))
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
1571
|
1572
|
||||||
|
|
Loading…
Reference in New Issue