fixing bug #64044 reported by Gero Meißner, template matches compilation
authorDaniel Veillard <veillard@src.gnome.org>
Mon, 26 Nov 2001 10:23:04 +0000 (10:23 +0000)
committerDaniel Veillard <veillard@src.gnome.org>
Mon, 26 Nov 2001 10:23:04 +0000 (10:23 +0000)
* libxslt/pattern.c: fixing bug #64044 reported by Gero Meißner,
  template matches compilation was failing to skip blanks bewteen
  consecutive predicates
Daniel

ChangeLog
libxslt/pattern.c

index 69dcd50..f7ad6a3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Mon Nov 26 11:21:27 CET 2001 Daniel Veillard <daniel@veillard.com>
+
+       * 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 <daniel@veillard.com>
 
        * Makefile.am configure.in breakpoint/Makefile.am libexslt/Makefile.am:
index 592650d..1e4385a 100644 (file)
@@ -1372,6 +1372,7 @@ parse_predicate:
        /* push the predicate lower than local test */
        SWAP();
        NEXT;
+       SKIP_BLANKS;
     }
     return;
 error: