mirror of
https://github.com/reactos/reactos.git
synced 2025-06-28 09:09:42 +00:00
Update libxml to 2.7.7
Resync zlib to 1.2.5. Patch by Samuel Serapion and some lil includes cleanup by me. svn path=/trunk/; revision=47933
This commit is contained in:
parent
a15dcc4250
commit
35deb4dbb9
49 changed files with 1927 additions and 8666 deletions
11
reactos/lib/3rdparty/libxml2/xmlregexp.c
vendored
11
reactos/lib/3rdparty/libxml2/xmlregexp.c
vendored
|
@ -4892,6 +4892,17 @@ xmlFAParseCharClassEsc(xmlRegParserCtxtPtr ctxt) {
|
|||
}
|
||||
}
|
||||
} else if (ctxt->atom->type == XML_REGEXP_RANGES) {
|
||||
switch (cur) {
|
||||
case 'n':
|
||||
cur = '\n';
|
||||
break;
|
||||
case 'r':
|
||||
cur = '\r';
|
||||
break;
|
||||
case 't':
|
||||
cur = '\t';
|
||||
break;
|
||||
}
|
||||
xmlRegAtomAddRange(ctxt, ctxt->atom, ctxt->neg,
|
||||
XML_REGEXP_CHARVAL, cur, cur, NULL);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue