Fixes bug 173200: semi-colon is not a delimiter
This commit is contained in:
parent
bd06d39220
commit
75e09500c4
Binary file not shown.
|
@ -27,7 +27,7 @@
|
|||
(define delimiter?
|
||||
(lambda (c)
|
||||
(or (char-whitespace? c)
|
||||
(memq c '(#\( #\) #\[ #\] #\{ #\} #\' #\` #\, #\")))))
|
||||
(memq c '(#\( #\) #\[ #\] #\" #\# #\;)))))
|
||||
(define digit?
|
||||
(lambda (c)
|
||||
(and ($char<= #\0 c) ($char<= c #\9))))
|
||||
|
|
|
@ -1 +1 @@
|
|||
1157
|
||||
1158
|
||||
|
|
Loading…
Reference in New Issue