Tweak SYMBOL_CHAR define in tokenizer.cpp

Make it a little clearer what a SYMBOL_CHAR is, use ALPHA instead of
ALPHA_EXCEPT_C and case 'c', which is ALPHA's definition.
master
Wink Saville 2018-09-25 16:27:39 -07:00 committed by Andrew Kelley
parent 9485043b3c
commit 631851f8b5
1 changed files with 2 additions and 3 deletions

View File

@ -92,10 +92,9 @@
case 'c'
#define SYMBOL_CHAR \
ALPHA_EXCEPT_C: \
ALPHA: \
case DIGIT: \
case '_': \
case 'c'
case '_'
#define SYMBOL_START \
ALPHA: \