WRC: '.' is a valid char of tIDENT

Jacek Caban jack at itma.pwr.wroc.pl
Thu Jun 30 09:10:26 CDT 2005


Changelog:
    '.' is a valid char of tIDENT
-------------- next part --------------
Index: tools/wrc/parser.l
===================================================================
RCS file: /home/wine/wine/tools/wrc/parser.l,v
retrieving revision 1.26
diff -u -p -r1.26 parser.l
--- tools/wrc/parser.l	9 Apr 2004 19:08:53 -0000	1.26
+++ tools/wrc/parser.l	30 Jun 2005 14:05:50 -0000
@@ -405,7 +405,7 @@ static struct keyword *iskeyword(char *k
 	 * 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)


More information about the wine-patches mailing list