]> git.eshelyaron.com Git - emacs.git/commitdiff
(display-time-filter):
authorKarl Heuer <kwzh@gnu.org>
Wed, 7 Jun 1995 18:35:06 +0000 (18:35 +0000)
committerKarl Heuer <kwzh@gnu.org>
Wed, 7 Jun 1995 18:35:06 +0000 (18:35 +0000)
Use same instant for both time and time-zone.

lisp/time.el

index f99cb3c5d516d28ca30db3beb4d7738c33be4675..e841d52618d72e52d285a6b7f7883394fe376e3e 100644 (file)
@@ -117,7 +117,8 @@ For example, the form
 would give mode line times like `94/12/30 21:07:48 (UTC)'.")
 
 (defun display-time-filter (proc string)
-  (let* ((time (current-time-string))
+  (let* ((now (current-time))
+        (time (current-time-string now))
          (load (condition-case ()
                    (if (zerop (car (load-average))) ""
                      (let ((str (format " %03d" (car (load-average)))))
@@ -149,7 +150,7 @@ would give mode line times like `94/12/30 21:07:48 (UTC)'.")
          (am-pm (if (>= hour 12) "pm" "am"))
          (minutes (substring time 14 16))
          (seconds (substring time 17 19))
-         (time-zone (car (cdr (current-time-zone))))
+         (time-zone (car (cdr (current-time-zone now))))
          (day (substring time 8 10))
          (year (substring time 20 24))
          (monthname (substring time 4 7))