1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-28 00:21:53 +03:00

Updated TODO conditionnal compile of messages from the parser/tree.c code,

Updated TODO
conditionnal compile of messages from the parser/tree.c code,
Daniel
This commit is contained in:
Daniel Veillard
2000-01-15 14:20:03 +00:00
parent 0142b84bbf
commit ad8f99df6b
4 changed files with 279 additions and 12 deletions

View File

@ -795,7 +795,6 @@ xmlParseCharRef(xmlParserCtxtPtr ctxt) {
int val = 0;
if (ctxt->token != 0) {
fprintf(stderr, "xmlParseCharRef : ctxt->token != 0\n");
val = ctxt->token;
ctxt->token = 0;
return(val);
@ -994,7 +993,6 @@ xmlParserHandleReference(xmlParserCtxtPtr ctxt) {
xmlEntityPtr ent = NULL;
if (ctxt->token != 0) {
fprintf(stderr, "xmlParserHandleReference : ctxt->token != 0\n");
return;
}
if (CUR != '&') return;
@ -1229,7 +1227,6 @@ xmlParserHandlePEReference(xmlParserCtxtPtr ctxt) {
xmlParserInputPtr input;
if (ctxt->token != 0) {
fprintf(stderr, "xmlParserHandlePEReference : ctxt->token != 0\n");
return;
}
if (CUR != '%') return;