Doc bug: date format used in scoring has four-digit year, not two digits.
authorKai Grossjohann <kgrossjo@eu.uu.net>
Mon, 18 Sep 2000 15:38:42 +0000 (15:38 +0000)
committerKai Grossjohann <kgrossjo@eu.uu.net>
Mon, 18 Sep 2000 15:38:42 +0000 (15:38 +0000)
lisp/ChangeLog
lisp/gnus-util.el

index e5d42b5..074a1aa 100644 (file)
@@ -1,3 +1,9 @@
+2000-09-18  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
+
+       * gnus-util.el (gnus-time-iso8601): Correct doc string (four digit
+       year).
+       (gnus-date-iso8601): Ditto.
+
 2000-09-18 09:05:46  ShengHuo ZHU  <zsh@cs.rochester.edu>
 
        * mail-source.el (mail-source-fetch-imap): Disable multibyte.
index 10f5076..72e4d03 100644 (file)
@@ -311,11 +311,11 @@ Cache the result as a text property stored in DATE."
             time)))))
 
 (defsubst gnus-time-iso8601 (time)
-  "Return a string of TIME in YYMMDDTHHMMSS format."
+  "Return a string of TIME in YYYYMMDDTHHMMSS format."
   (format-time-string "%Y%m%dT%H%M%S" time))
 
 (defun gnus-date-iso8601 (date)
-  "Convert the DATE to YYMMDDTHHMMSS."
+  "Convert the DATE to YYYYMMDDTHHMMSS."
   (condition-case ()
       (gnus-time-iso8601 (gnus-date-get-time date))
     (error "")))