]> git.eshelyaron.com Git - emacs.git/commitdiff
time-date.el (format-seconds): Comment fix.
authorKatsumi Yamaoka <yamaoka@jpl.org>
Tue, 14 Sep 2010 06:01:14 +0000 (06:01 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Tue, 14 Sep 2010 06:01:14 +0000 (06:01 +0000)
lisp/ChangeLog
lisp/calendar/time-date.el

index 31de63c630e35df1644dac64b487b5929322834f..52ba1f89303c32f9a41474ed53c35f93ffd8a3ae 100644 (file)
@@ -1,3 +1,7 @@
+2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * calendar/time-date.el (format-seconds): Comment fix.
+
 2010-09-13  Michael R. Mauger  <mmaug@yahoo.com>
 
        * progmodes/sql.el: Version 2.7.
index d99d13e431d0ba3ce21cd0537b8b56bc81a8858f..bfb85e2cd73fa3fe29f15884a12c4d30635570b7 100644 (file)
@@ -317,10 +317,10 @@ This function does not work for SECONDS greater than `most-positive-fixnum'."
       (setq start (match-end 0)
             spec (match-string 1 string))
       (unless (string-equal spec "%")
-       ;; `assoc-string' is not available in Emacs 21.  So when compiling
-       ;; Gnus (`time-date.el' is part of Gnus) with Emacs 21, we get a
-       ;; warning here.  But `format-seconds' is not used anywhere in Gnus so
-       ;; it's not a real problem. --rsteib
+       ;; `assoc-string' is not available in XEmacs or Emacs 21.  So when
+       ;; compiling Gnus (`time-date.el' is part of Gnus) with XEmacs or
+       ;; Emacs 21, we get a warning here.  But `format-seconds' is not
+       ;; used anywhere in Gnus so it's not a real problem. --rsteib
         (or (setq match (assoc-string spec units t))
             (error "Bad format specifier: `%s'" spec))
         (if (assoc-string spec usedunits t)