From cf25ddf59fb7c57db715807c53bb8d72e5d7441b Mon Sep 17 00:00:00 2001 From: "William M. Brack" Date: Mon, 15 Sep 2003 14:45:00 +0000 Subject: [PATCH] Added XML_PI_NODE to the macro IS_XSLT_REAL_NODE, fixed bug 120644. * libxslt/xsltutils.h: Added XML_PI_NODE to the macro IS_XSLT_REAL_NODE, fixed bug 120644. --- ChangeLog | 5 +++++ libxslt/xsltutils.h | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3624111..ef65a22 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Sep 15 07:41:14 PDT 2003 William Brack + + * libxslt/xsltutils.h: Added XML_PI_NODE to the macro + IS_XSLT_REAL_NODE, fixed bug 120644. + Sat Sep 13 02:04:13 CEST 2003 Daniel Veillard * xsltproc/xsltproc.c doc/xsltproc.1 doc/xsltproc.xml diff --git a/libxslt/xsltutils.h b/libxslt/xsltutils.h index 7ca6fc0..e253bd4 100644 --- a/libxslt/xsltutils.h +++ b/libxslt/xsltutils.h @@ -72,7 +72,8 @@ extern "C" { ((n)->type == XML_TEXT_NODE) || \ ((n)->type == XML_ATTRIBUTE_NODE) || \ ((n)->type == XML_DOCUMENT_NODE) || \ - ((n)->type == XML_HTML_DOCUMENT_NODE))) + ((n)->type == XML_HTML_DOCUMENT_NODE) || \ + ((n)->type == XML_PI_NODE))) /* * Our own version of namespaced atributes lookup. -- 2.7.4