diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lexer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lexer.c b/src/lexer.c index 840596a..02a6636 100644 --- a/src/lexer.c +++ b/src/lexer.c @@ -45,7 +45,7 @@ teco_lexer_getstyle(teco_view_t *view, teco_machine_main_t *machine, chr <= 0xFF) { if (g_ascii_isdigit(chr)) style = SCE_SCITECO_NUMBER; - else if (strchr("+-*/#&", chr)) + else if (strchr(",+-*/#&", chr)) style = SCE_SCITECO_OPERATOR; } |
