From 747657e6e0c1ad9365a85ea2747a13094e695729 Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Tue, 13 Dec 2016 18:00:32 -0800 Subject: [PATCH] adjust --- beautiful-racket/br/demo/jsonic-2/colorer.rkt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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