1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-29 11:41:22 +03:00

- Fixed bug #4344 - Fixed C++ problems in headers - Released 1.8.1 Daniel

- Fixed bug #4344
- Fixed C++ problems in headers
- Released 1.8.1
Daniel
This commit is contained in:
Daniel Veillard
1999-12-18 15:32:46 +00:00
parent b24054a09a
commit f600e2537f
21 changed files with 576 additions and 394 deletions

View File

@ -4186,6 +4186,10 @@ xmlParseElementMixedContentDecl(xmlParserCtxtPtr ctxt) {
if (CUR == ')') {
NEXT;
ret = xmlNewElementContent(NULL, XML_ELEMENT_CONTENT_PCDATA);
if (CUR == '*') {
ret->ocur = XML_ELEMENT_CONTENT_MULT;
NEXT;
}
return(ret);
}
if ((CUR == '(') || (CUR == '|')) {