fixed a couple of problems when parsing libxslt ChangeLog Daniel

* doc/ChangeLog.awk: fixed a couple of problems when parsing
  libxslt ChangeLog
Daniel
diff --git a/ChangeLog b/ChangeLog
index 2f07332..2792ef3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun May 16 03:06:31 CEST 2004 Daniel Veillard <daniel@veillard.com>
+
+	* doc/ChangeLog.awk: fixed a couple of problems when parsing
+          libxslt ChangeLog
+
 Sat May 15 20:14:21 CEST 2004 Daniel Veillard <daniel@veillard.com>
 
 	* doc/ChangeLog.awk doc/ChangeLog.xsl: first steps of a good
diff --git a/doc/ChangeLog.awk b/doc/ChangeLog.awk
index bd80da1..9a4cfb6 100755
--- a/doc/ChangeLog.awk
+++ b/doc/ChangeLog.awk
@@ -12,7 +12,7 @@
                 print "</log>"
 	      }
 /^[ \t]*$/    { next }
-/^Mon|^Tue|^Wed|^Thu|^Fri|^Sat|^Sun/ { 
+/^[A-Za-z0-9]/ { 
                 match($0, "\(.*\) \([A-Z]+\) \([0-9][0-9][0-9][0-9]\) \(.*\) <\(.*\)>", loge)
                 if (in_item == 1)  printf("%s</item>\n", item)
                 if (in_entry == 1) print "  </entry>"