missed some changes related to addition of dont-care values

in the lexers

original commit: 3e27388571292f1db95c558dd4a9bb1f944d395f
This commit is contained in:
Robby Findler 2013-03-10 21:56:02 -05:00
parent 7c59dcd240
commit 3dd977cf2f

View File

@ -1,6 +1,7 @@
#lang racket/base
(require syntax/strip-context
syntax-color/module-lexer
syntax-color/lexer-contract
"../racket.rkt"
"../base.rkt"
"manual-scheme.rkt"
@ -71,7 +72,9 @@
(if (eof-object? lexeme)
null
(cons (list type (sub1 start) (sub1 end) 0)
(loop mode)))))]
(loop (if (dont-stop? mode)
(dont-stop-val mode)
mode))))))]
[e (parameterize ([read-accept-reader #t])
((or expand
(lambda (stx)