use next-token rather than #:skip

This commit is contained in:
Matthew Butterick 2016-09-26 15:47:27 -07:00
parent 474dddf9b3
commit 53668f770e

View File

@ -15,6 +15,6 @@
(lexer
[(eof) eof]
[(char-set "><-.,+[]") lexeme]
[any-char (token 'COMMENT #:skip? #t)]))
[any-char (next-token)]))
(our-lexer port))
next-token)