Commit 6580ae03 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

'.' is a valid char of tIDENT.

parent 0f150ad8
...@@ -405,7 +405,7 @@ static struct keyword *iskeyword(char *kw) ...@@ -405,7 +405,7 @@ static struct keyword *iskeyword(char *kw)
* and *only* in a filename. In this case, the second * and *only* in a filename. In this case, the second
* rule will be reduced because it is longer. * rule will be reduced because it is longer.
*/ */
[A-Za-z_0-9]+ { [A-Za-z_0-9.]+ {
struct keyword *tok = iskeyword(yytext); struct keyword *tok = iskeyword(yytext);
if(tok) if(tok)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment