summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xml.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/xml.c b/xml.c
index d223625..88b2e95 100644
--- a/xml.c
+++ b/xml.c
@@ -223,9 +223,12 @@ xmlparser_parse(XMLParser *x) {
x->data[5] == 'A' && x->data[6] == '[') { /* cdata */
xmlparser_parsecdata(x);
break;
+ #if 0
} else {
+ /* TODO ? */
/* markup declaration section */
while((c = xmlparser_getnext(x)) != EOF && c != ']');
+ #endif
}
}
}