mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-29 11:41:22 +03:00
moved the symlinks detection within a CVS check, this is not portable and
* configure.in: moved the symlinks detection within a CVS check, this is not portable and will be removed soon. * xpath.c: small cleanup/speedup Daniel
This commit is contained in:
3
xpath.c
3
xpath.c
@ -5556,7 +5556,8 @@ xmlXPathParseNCName(xmlXPathParserContextPtr ctxt) {
|
||||
while (((*in >= 0x61) && (*in <= 0x7A)) ||
|
||||
((*in >= 0x41) && (*in <= 0x5A)) ||
|
||||
((*in >= 0x30) && (*in <= 0x39)) ||
|
||||
(*in == '_'))
|
||||
(*in == '_') || (*in == '.') ||
|
||||
(*in == '-'))
|
||||
in++;
|
||||
if ((*in == ' ') || (*in == '>') || (*in == '/') ||
|
||||
(*in == '[') || (*in == ']') || (*in == ':') ||
|
||||
|
Reference in New Issue
Block a user