diff --git a/beautiful-racket/br/demo/jsonic-2/colorer.rkt b/beautiful-racket/br/demo/jsonic-2/colorer.rkt index 7cb491c..cf1d63c 100644 --- a/beautiful-racket/br/demo/jsonic-2/colorer.rkt +++ b/beautiful-racket/br/demo/jsonic-2/colorer.rkt @@ -20,7 +20,8 @@ (values lexeme 'comment #f (pos lexeme-start) (pos lexeme-end))] [any-char (values lexeme 'string #f (pos lexeme-start) (pos lexeme-end))])) - (if (and in-racket-expr? (not (equal? (peek-string 2 0 port) "$@"))) + (if (and in-racket-expr? + (not (equal? (peek-string 2 0 port) "$@"))) (racket-lexer port) (jsonic-lexer port))) (provide color-jsonic) \ No newline at end of file