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

- configure.in doc/xml.html include/libxml/xmlwin32version.h:

release of 2.3.12
- parser.c: make an error message if unknow entities in all cases
Daniel
This commit is contained in:
Daniel Veillard
2001-06-26 16:08:24 +00:00
parent fcbd74a2d0
commit 1164810d66
5 changed files with 29 additions and 9 deletions

View File

@ -5232,7 +5232,7 @@ xmlParseEntityRef(xmlParserCtxtPtr ctxt) {
} else {
ctxt->errNo = XML_WAR_UNDECLARED_ENTITY;
if ((ctxt->sax != NULL) && (ctxt->sax->warning != NULL))
ctxt->sax->warning(ctxt->userData,
ctxt->sax->error(ctxt->userData,
"Entity '%s' not defined\n", name);
}
}