From 72b93d00627fe92e7541a99a1b6b5715acc93153 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 12 Jun 2001 22:26:10 +0000 Subject: [PATCH] more stuff --- tools/qfcc/source/qc-lex.l | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/qfcc/source/qc-lex.l b/tools/qfcc/source/qc-lex.l index 0bddf4ca6..ee90a194f 100644 --- a/tools/qfcc/source/qc-lex.l +++ b/tools/qfcc/source/qc-lex.l @@ -11,9 +11,11 @@ ID [a-zA-Z_][a-zA-Z_0-9]* %% -{DIGIT}+"."{DIGIT}* +{DIGIT}+"."{DIGIT}* return VALUE; -{ID} +{ID} return NAME + +\"(\.|[^"])*\" "!"|"("|")"|"{"|"}"|"."|"*"|"/"|"&"|"|"|"+"|"-"|"="|"["|"]" return yytext[0];