Fixing up the lexer used for syntax coloring to return the appropriate value for grouping operators.

svn: r332
This commit is contained in:
Stevie Strickland 2005-07-04 21:10:43 +00:00
parent cc8ee7ac3a
commit 623effa2f8

View File

@ -242,7 +242,7 @@
(syn-val lexeme 'default #f start-pos end-pos)]
[lex:grouping
(syn-val lexeme 'parenthesis #f start-pos end-pos)]
(syn-val lexeme 'parenthesis (string->symbol lexeme) start-pos end-pos)]
[lex:ident
(syn-val lexeme 'identifier #f start-pos end-pos)]