aboutsummaryrefslogtreecommitdiffstats
path: root/SAX2.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2004-10-22 14:34:23 +0000
committerDaniel Veillard <veillard@src.gnome.org>2004-10-22 14:34:23 +0000
commitfc484dd0a01b5f8f2187dd8a6791d5f8677fa816 (patch)
treebc3821ffcd1da9d9c0d27a7b20f942bdc5e5b77c /SAX2.c
parent01c3bd53d8460c5985e7faca72d4b0c8fa6f8419 (diff)
downloadandroid_external_libxml2-fc484dd0a01b5f8f2187dd8a6791d5f8677fa816.tar.gz
android_external_libxml2-fc484dd0a01b5f8f2187dd8a6791d5f8677fa816.tar.bz2
android_external_libxml2-fc484dd0a01b5f8f2187dd8a6791d5f8677fa816.zip
added support for HTML PIs #156087 added specific tests Daniel
* HTMLparser.c: added support for HTML PIs #156087 * test/HTML/python.html result/HTML/python.html*: added specific tests Daniel
Diffstat (limited to 'SAX2.c')
-rw-r--r--SAX2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/SAX2.c b/SAX2.c
index c41af00a..ddb13e92 100644
--- a/SAX2.c
+++ b/SAX2.c
@@ -2635,7 +2635,7 @@ xmlSAX2InitHtmlDefaultSAXHandler(xmlSAXHandler *hdlr)
hdlr->characters = xmlSAX2Characters;
hdlr->cdataBlock = xmlSAX2CDataBlock;
hdlr->ignorableWhitespace = xmlSAX2IgnorableWhitespace;
- hdlr->processingInstruction = NULL;
+ hdlr->processingInstruction = xmlSAX2ProcessingInstruction;
hdlr->comment = xmlSAX2Comment;
hdlr->warning = xmlParserWarning;
hdlr->error = xmlParserError;