From ca8e3c1cca444b9961b957762b5eec3874609bb5 Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Mon, 5 Dec 2011 23:27:20 +0300 Subject: [PATCH] msxml3: Attribute name could be qualified. --- dlls/msxml3/xslpattern.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msxml3/xslpattern.y b/dlls/msxml3/xslpattern.y index 5187761d93a..2fe36278f3e 100644 --- a/dlls/msxml3/xslpattern.y +++ b/dlls/msxml3/xslpattern.y @@ -179,7 +179,7 @@ static void xslpattern_error(parser_param* param, void const* scanner, char cons $$=xmlStrcat($$,U("::")); } ; - Attribute : '@' TOK_NCName + Attribute : '@' QName { TRACE("Got Attribute: \"@%s\"\n", $2); $$=xmlStrdup(U("@")); -- 2.11.4.GIT