mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-28 00:21:53 +03:00
Big OpenVMS patch: - nanohttp.c parser.[ch] tree.[ch] xmlIO.[ch] xmllint.c
Big OpenVMS patch: - nanohttp.c parser.[ch] tree.[ch] xmlIO.[ch] xmllint.c xpath.c parserInternals.h vms/build_libxml.com vms/config.vms Makefile.am: integrated a set of OpenVMS changes from Howard Taylor <Howard.Taylor@pacoast.com> Daniel
This commit is contained in:
15
xpath.c
15
xpath.c
@ -11,6 +11,9 @@
|
||||
* See COPYRIGHT for the status of this software
|
||||
*
|
||||
* Author: Daniel.Veillard@w3.org
|
||||
*
|
||||
* 14 Nov 2000 ht - truncated declaration of xmlXPathEvalRelativeLocationPath
|
||||
* for VMS
|
||||
*/
|
||||
|
||||
#ifdef WIN32
|
||||
@ -3983,7 +3986,12 @@ xmlXPathRoundFunction(xmlXPathParserContextPtr ctxt, int nargs) {
|
||||
void xmlXPathEvalExpr(xmlXPathParserContextPtr ctxt);
|
||||
void xmlXPathEvalPredicate(xmlXPathParserContextPtr ctxt);
|
||||
void xmlXPathEvalLocationPath(xmlXPathParserContextPtr ctxt);
|
||||
#ifdef VMS
|
||||
void xmlXPathEvalRelLocationPath(xmlXPathParserContextPtr ctxt);
|
||||
#define xmlXPathEvalRelativeLocationPath xmlXPathEvalRelLocationPath
|
||||
#else
|
||||
void xmlXPathEvalRelativeLocationPath(xmlXPathParserContextPtr ctxt);
|
||||
#endif
|
||||
|
||||
/**
|
||||
* xmlXPathParseNCName:
|
||||
@ -5439,7 +5447,12 @@ eval_predicates:
|
||||
*
|
||||
*/
|
||||
void
|
||||
xmlXPathEvalRelativeLocationPath(xmlXPathParserContextPtr ctxt) {
|
||||
#ifdef VMS
|
||||
xmlXPathEvalRelLocationPath
|
||||
#else
|
||||
xmlXPathEvalRelativeLocationPath
|
||||
#endif
|
||||
(xmlXPathParserContextPtr ctxt) {
|
||||
SKIP_BLANKS;
|
||||
if ((CUR == '/') && (NXT(1) == '/')) {
|
||||
SKIP(2);
|
||||
|
Reference in New Issue
Block a user