From 6580ae03ed2729ace1d52a866823f28c10534428 Mon Sep 17 00:00:00 2001 From: Jacek Caban <jack@itma.pwr.wroc.pl> Date: Thu, 30 Jun 2005 18:09:39 +0000 Subject: [PATCH] '.' is a valid char of tIDENT. --- tools/wrc/parser.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/wrc/parser.l b/tools/wrc/parser.l index 2e04bc1f521..58487a750c5 100644 --- a/tools/wrc/parser.l +++ b/tools/wrc/parser.l @@ -405,7 +405,7 @@ static struct keyword *iskeyword(char *kw) * and *only* in a filename. In this case, the second * rule will be reduced because it is longer. */ -[A-Za-z_0-9]+ { +[A-Za-z_0-9.]+ { struct keyword *tok = iskeyword(yytext); if(tok) -- GitLab