diff --git a/result/XPath/tests/unicodesimple b/result/XPath/tests/unicodesimple new file mode 100644 index 00000000..92aa5365 --- /dev/null +++ b/result/XPath/tests/unicodesimple @@ -0,0 +1,6 @@ + +======================== +Expression: /文書 +Object is a Node Set : +Set contains 1 nodes: +1 ELEMENT #E6#96#87#E6#9B#B8 diff --git a/test/XPath/docs/unicode b/test/XPath/docs/unicode new file mode 100644 index 00000000..8be1ea26 --- /dev/null +++ b/test/XPath/docs/unicode @@ -0,0 +1 @@ +<文書>text1 diff --git a/test/XPath/tests/unicodesimple b/test/XPath/tests/unicodesimple new file mode 100644 index 00000000..d53f4f5f --- /dev/null +++ b/test/XPath/tests/unicodesimple @@ -0,0 +1 @@ +/文書 diff --git a/xpath.c b/xpath.c index e3ca1e16..1bd0fbab 100644 --- a/xpath.c +++ b/xpath.c @@ -10081,8 +10081,9 @@ xmlXPathCompLocationPath(xmlXPathParserContextPtr ctxt) { } else if (CUR == '/') { NEXT; SKIP_BLANKS; - if ((CUR != 0 ) && - ((IS_ASCII_LETTER(CUR)) || (CUR == '_') || (CUR == '.') || + if ((CUR != 0) && + ((IS_ASCII_LETTER(CUR)) || (CUR >= 0x80) || + (CUR == '_') || (CUR == '.') || (CUR == '@') || (CUR == '*'))) xmlXPathCompRelativeLocationPath(ctxt); }