Ooops: - xpath.h: the comp field must be added at the end to avoid killing

Ooops:
- xpath.h: the comp field must be added at the end to avoid
  killing binary compat.
Daniel
diff --git a/include/libxml/xpath.h b/include/libxml/xpath.h
index d7e23d1..f86c0ff 100644
--- a/include/libxml/xpath.h
+++ b/include/libxml/xpath.h
@@ -237,13 +237,14 @@
 
     int error;				/* error code */
 
-    xmlXPathCompExprPtr comp;		/* the precompiled expression */
-
     xmlXPathContextPtr  context;	/* the evaluation context */
     xmlXPathObjectPtr     value;	/* the current value */
     int                 valueNr;	/* number of values stacked */
     int                valueMax;	/* max number of values stacked */
     xmlXPathObjectPtr *valueTab;	/* stack of values */
+
+    xmlXPathCompExprPtr comp;		/* the precompiled expression */
+
 };
 
 /*