fix datalog colorer for specials
closes PR 13991
This commit is contained in:
parent
8b2b3c767d
commit
28e2d6098b
|
@ -33,4 +33,6 @@
|
||||||
[(:or "!=" #\= #\? #\~ #\. #\, ":-") (syn-val lexeme 'parenthesis #f start-pos end-pos)]
|
[(:or "!=" #\= #\? #\~ #\. #\, ":-") (syn-val lexeme 'parenthesis #f start-pos end-pos)]
|
||||||
[(eof) (syn-val lexeme 'eof #f start-pos end-pos)]
|
[(eof) (syn-val lexeme 'eof #f start-pos end-pos)]
|
||||||
[#\" ((colorize-string start-pos) input-port)]
|
[#\" ((colorize-string start-pos) input-port)]
|
||||||
[any-char (syn-val lexeme 'error #f start-pos end-pos)]))
|
[any-char (syn-val lexeme 'error #f start-pos end-pos)]
|
||||||
|
[(special) (syn-val lexeme 'error #f start-pos end-pos)]
|
||||||
|
[(special-comment) (syn-val lexeme 'error #f start-pos end-pos)]))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user