aboutsummaryrefslogtreecommitdiffstats
path: root/xpath.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2002-10-22 17:35:37 +0000
committerDaniel Veillard <veillard@src.gnome.org>2002-10-22 17:35:37 +0000
commite645e8c1414b53d96b6cca3c7691005b75b2e647 (patch)
tree48f6df0badc9d67f9bae6f5ddb22fa4345ac3ecd /xpath.c
parentf000f0730381ec768d093c76689b4abb68d7b6cf (diff)
downloadandroid_external_libxml2-e645e8c1414b53d96b6cca3c7691005b75b2e647.tar.gz
android_external_libxml2-e645e8c1414b53d96b6cca3c7691005b75b2e647.tar.bz2
android_external_libxml2-e645e8c1414b53d96b6cca3c7691005b75b2e647.zip
Applied the VMS update patch from Craig A. Berry update Daniel
* vms/build_libxml.com vms/config.vms vms/readme.vms include/libxml/parser.h include/libxml/parserInternals.h include/libxml/tree.h include/libxml/xmlIO.h HTMLparser.c catalog.c debugXML.c parser.c parserInternals.c tree.c triodef.h trionan.c uri.c xmlIO.c xpath.c: Applied the VMS update patch from Craig A. Berry * doc/*.html: update Daniel
Diffstat (limited to 'xpath.c')
-rw-r--r--xpath.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/xpath.c b/xpath.c
index eac09371..7a39f74b 100644
--- a/xpath.c
+++ b/xpath.c
@@ -12,8 +12,6 @@
*
* Author: daniel@veillard.com
*
- * 14 Nov 2000 ht - truncated declaration of xmlXPathEvalRelativeLocationPath
- * for VMS
*/
#define IN_LIBXML
@@ -6913,12 +6911,7 @@ xmlXPathRoundFunction(xmlXPathParserContextPtr ctxt, int nargs) {
static void xmlXPathCompileExpr(xmlXPathParserContextPtr ctxt);
static void xmlXPathCompPredicate(xmlXPathParserContextPtr ctxt, int filter);
static void xmlXPathCompLocationPath(xmlXPathParserContextPtr ctxt);
-#ifdef VMS
-static void xmlXPathCompRelLocationPath(xmlXPathParserContextPtr ctxt);
-#define xmlXPathCompRelativeLocationPath xmlXPathCompRelLocationPath
-#else
static void xmlXPathCompRelativeLocationPath(xmlXPathParserContextPtr ctxt);
-#endif
static xmlChar * xmlXPathParseNameComplex(xmlXPathParserContextPtr ctxt,
int qualified);
@@ -8568,11 +8561,7 @@ eval_predicates:
* Compile a relative location path.
*/
static void
-#ifdef VMS
-xmlXPathCompRelLocationPath
-#else
xmlXPathCompRelativeLocationPath
-#endif
(xmlXPathParserContextPtr ctxt) {
SKIP_BLANKS;
if ((CUR == '/') && (NXT(1) == '/')) {