Fixes bug 173200: semi-colon is not a delimiter

This commit is contained in:
Abdulaziz Ghuloum 2007-12-01 03:18:28 -05:00
parent bd06d39220
commit 75e09500c4
3 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -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))))

View File

@ -1 +1 @@
1157
1158