From 15a3a0e2b5fc2aef07f0d099dd2056968d4d5d7b Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Mon, 26 Nov 2001 10:23:04 +0000 Subject: [PATCH] =?utf8?q?fixing=20bug=20#64044=20reported=20by=20Gero=20M?= =?utf8?q?ei=DFner,=20template=20matches=20compilation?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * libxslt/pattern.c: fixing bug #64044 reported by Gero Meißner, template matches compilation was failing to skip blanks bewteen consecutive predicates Daniel --- ChangeLog | 6 ++++++ libxslt/pattern.c | 1 + 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 69dcd50..f7ad6a3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Mon Nov 26 11:21:27 CET 2001 Daniel Veillard + + * libxslt/pattern.c: fixing bug #64044 reported by Gero Meißner, + template matches compilation was failing to skip blanks bewteen + consecutive predicates + Mon Nov 26 10:27:30 CET 2001 Daniel Veillard * Makefile.am configure.in breakpoint/Makefile.am libexslt/Makefile.am: diff --git a/libxslt/pattern.c b/libxslt/pattern.c index 592650d..1e4385a 100644 --- a/libxslt/pattern.c +++ b/libxslt/pattern.c @@ -1372,6 +1372,7 @@ parse_predicate: /* push the predicate lower than local test */ SWAP(); NEXT; + SKIP_BLANKS; } return; error: -- 2.7.4