fixed a stupid () error + Mark name. Daniel

* xpath.c: fixed a stupid () error + Mark name.
Daniel
diff --git a/ChangeLog b/ChangeLog
index 09ed24a..23aebb4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Mon Apr 19 23:27:46 CEST 2004 Daniel Veillard <daniel@veillard.com>
+
+	* xpath.c: fixed a stupid () error + Mark name.
+
 Sun Apr 18 23:45:46 CEST 2004 Daniel Veillard <daniel@veillard.com>
 
 	* configure.in: preparing 2.6.9 release
@@ -746,12 +750,12 @@
 
 Tue Jan 13 21:50:05 CET 2004 Daniel Veillard <daniel@veillard.com>
 
-	* testHTML.c: another small patch from Mark Vadoc
+	* testHTML.c: another small patch from Mark Vakoc
 
 Tue Jan 13 21:39:58 CET 2004 Daniel Veillard <daniel@veillard.com>
 
 	* HTMLparser.c relaxng.c testRelax.c testSchemas.c: applied
-	  patch from Mark Vadoc to not use SAX1 unless necessary.
+	  patch from Mark Vakoc to not use SAX1 unless necessary.
 
 Mon Jan 12 17:22:57 CET 2004 Daniel Veillard <daniel@veillard.com>
 
@@ -5216,7 +5220,7 @@
 
 Thu Dec 12 01:09:34 CET 2002 Daniel Veillard <daniel@veillard.com>
 
-	* HTMLtree.c include/libxml/HTMLtree.h: patch from Mark Vadok
+	* HTMLtree.c include/libxml/HTMLtree.h: patch from Mark Vakoc
 	  about htmlNodeDumpOutput location.
 	* xpath.c: removed an undefined function signature
 	* doc/apibuild.py doc/libxml2-api.xml: the script was exporting
@@ -12962,7 +12966,7 @@
 
 Thu Dec 12 01:09:34 CET 2002 Daniel Veillard <daniel@veillard.com>
 
-	* HTMLtree.c include/libxml/HTMLtree.h: patch from Mark Vadok
+	* HTMLtree.c include/libxml/HTMLtree.h: patch from Mark Vakoc
 	  about htmlNodeDumpOutput location.
 	* xpath.c: removed an undefined function signature
 	* doc/apibuild.py doc/libxml2-api.xml: the script was exporting
diff --git a/doc/index.html b/doc/index.html
index fbefc3c..7621bbc 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -365,7 +365,7 @@
 
 </ul>
                                   <p>In most cases libxml2 tries to implement the specifications in a
-relatively strictly compliant way. As of release 2.4.16, libxml2 passes all
+relatively strictly compliant way. As of release 2.4.16, libxml2 passed all
 1800+ tests from the 
                                     <a href="http://www.oasis-open.org/committees/xml-conformance/">OASIS XML Tests
 Suite
@@ -379,8 +379,8 @@
                                       <a href="http://www.w3.org/TR/DOM-Level-2-Core/">http://www.w3.org/TR/DOM-Level-2-Core/
 </a>
 
-    it doesn't implement the API itself, gdome2 does this on top of
-  libxml2
+    the document model, but it doesn't implement the API itself,
+    gdome2 does this on top of libxml2
 </li>
 
   
@@ -398,13 +398,8 @@
 </li>
 
   
-                                    <li>SAX: a minimal SAX implementation compatible with early expat
-  versions
-</li>
-
-  
-                                    <li>DocBook SGML v4: libxml2 includes a hackish parser to transition to
-  XML
+                                    <li>SAX: a SAX2 like interface and a minimal SAX1 implementation compatible
+    with early expat versions
 </li>
 
 
diff --git a/doc/xml.html b/doc/xml.html
index 1105002..c0ec9ff 100644
--- a/doc/xml.html
+++ b/doc/xml.html
@@ -78,7 +78,7 @@
 </ul>
 
 <p>In most cases libxml2 tries to implement the specifications in a
-relatively strictly compliant way. As of release 2.4.16, libxml2 passes all
+relatively strictly compliant way. As of release 2.4.16, libxml2 passed all
 1800+ tests from the <a
 href="http://www.oasis-open.org/committees/xml-conformance/">OASIS XML Tests
 Suite</a>.</p>
@@ -88,16 +88,14 @@
 <ul>
   <li>Document Object Model (DOM) <a
     href="http://www.w3.org/TR/DOM-Level-2-Core/">http://www.w3.org/TR/DOM-Level-2-Core/</a>
-    it doesn't implement the API itself, gdome2 does this on top of
-  libxml2</li>
+    the document model, but it doesn't implement the API itself,
+    gdome2 does this on top of libxml2</li>
   <li><a href="http://www.cis.ohio-state.edu/rfc/rfc959.txt">RFC 959</a> :
     libxml2 implements a basic FTP client code</li>
   <li><a href="http://www.cis.ohio-state.edu/rfc/rfc1945.txt">RFC 1945</a> :
     HTTP/1.0, again a basic HTTP client code</li>
-  <li>SAX: a minimal SAX implementation compatible with early expat
-  versions</li>
-  <li>DocBook SGML v4: libxml2 includes a hackish parser to transition to
-  XML</li>
+  <li>SAX: a SAX2 like interface and a minimal SAX1 implementation compatible
+    with early expat versions</li>
 </ul>
 
 <p>A partial implementation of <a
diff --git a/xpath.c b/xpath.c
index 554350d..81fb00f 100644
--- a/xpath.c
+++ b/xpath.c
@@ -10923,8 +10923,8 @@
 	    return(res->boolval);
         case XPATH_NUMBER:
 #ifdef WIN32
-	    return(((res->floatval == ctxt->context->proximityPosition) &&
-	           (!xmlXPathIsNaN(res->floatval)) /* MSC pbm Mark Vadoc !*/);
+	    return((res->floatval == ctxt->context->proximityPosition) &&
+	           (!xmlXPathIsNaN(res->floatval))); /* MSC pbm Mark Vakoc !*/
 #else
 	    return(res->floatval == ctxt->context->proximityPosition);
 #endif