mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-29 11:41:22 +03:00
Igor Zlatkovic patches fixed typos Daniel
* win32/dsp/libxml2.def.src: Igor Zlatkovic patches * DOCBparser.c HTMLparser.c parser.c: fixed typos Daniel
This commit is contained in:
@ -1,3 +1,8 @@
|
||||
Tue Oct 2 11:18:32 CEST 2001 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* win32/dsp/libxml2.def.src: Igor Zlatkovic patches
|
||||
* DOCBparser.c HTMLparser.c parser.c: fixed typos
|
||||
|
||||
Mon Oct 1 09:34:51 CEST 2001 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* catalog.c: Justin Fletcher provided cleaup code in case
|
||||
|
@ -4809,7 +4809,7 @@ docbParseInternalSubset(xmlParserCtxtPtr ctxt) {
|
||||
if (RAW != '>') {
|
||||
ctxt->errNo = XML_ERR_DOCTYPE_NOT_FINISHED;
|
||||
if ((ctxt->sax != NULL) && (ctxt->sax->error != NULL))
|
||||
ctxt->sax->error(ctxt->userData, "DOCTYPE unproperly terminated\n");
|
||||
ctxt->sax->error(ctxt->userData, "DOCTYPE improperly terminated\n");
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
}
|
||||
|
@ -2669,7 +2669,7 @@ htmlParseDocTypeDecl(htmlParserCtxtPtr ctxt) {
|
||||
*/
|
||||
if (CUR != '>') {
|
||||
if ((ctxt->sax != NULL) && (ctxt->sax->error != NULL))
|
||||
ctxt->sax->error(ctxt->userData, "DOCTYPE unproperly terminated\n");
|
||||
ctxt->sax->error(ctxt->userData, "DOCTYPE improperly terminated\n");
|
||||
ctxt->wellFormed = 0;
|
||||
/* We shouldn't try to resynchronize ... */
|
||||
}
|
||||
|
4
parser.c
4
parser.c
@ -6036,7 +6036,7 @@ xmlParseDocTypeDecl(xmlParserCtxtPtr ctxt) {
|
||||
if (RAW != '>') {
|
||||
ctxt->errNo = XML_ERR_DOCTYPE_NOT_FINISHED;
|
||||
if ((ctxt->sax != NULL) && (ctxt->sax->error != NULL))
|
||||
ctxt->sax->error(ctxt->userData, "DOCTYPE unproperly terminated\n");
|
||||
ctxt->sax->error(ctxt->userData, "DOCTYPE improperly terminated\n");
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
}
|
||||
@ -6101,7 +6101,7 @@ xmlParseInternalSubset(xmlParserCtxtPtr ctxt) {
|
||||
if (RAW != '>') {
|
||||
ctxt->errNo = XML_ERR_DOCTYPE_NOT_FINISHED;
|
||||
if ((ctxt->sax != NULL) && (ctxt->sax->error != NULL))
|
||||
ctxt->sax->error(ctxt->userData, "DOCTYPE unproperly terminated\n");
|
||||
ctxt->sax->error(ctxt->userData, "DOCTYPE improperly terminated\n");
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
}
|
||||
|
@ -604,6 +604,7 @@ EXPORTS
|
||||
xmlSetProp
|
||||
xmlGetProp
|
||||
xmlHasProp
|
||||
xmlHasNsProp
|
||||
xmlSetNsProp
|
||||
xmlGetNsProp
|
||||
xmlStringGetNodeList
|
||||
@ -910,6 +911,8 @@ EXPORTS
|
||||
valuePush
|
||||
xmlXPathNewString
|
||||
xmlXPathNewCString
|
||||
xmlXPathWrapString
|
||||
xmlXPathWrapCString
|
||||
xmlXPathNewFloat
|
||||
xmlXPathNewBoolean
|
||||
xmlXPathNewNodeSet
|
||||
|
Reference in New Issue
Block a user