]> git.eshelyaron.com Git - emacs.git/commitdiff
(display-time-filter): Move run-hooks inside let.
authorRichard M. Stallman <rms@gnu.org>
Fri, 30 Jun 1995 00:23:08 +0000 (00:23 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 30 Jun 1995 00:23:08 +0000 (00:23 +0000)
lisp/time.el

index e841d52618d72e52d285a6b7f7883394fe376e3e..8e93bef5e020c5f80bc32da0a96cee6a8a223ab1 100644 (file)
@@ -163,8 +163,10 @@ would give mode line times like `94/12/30 21:07:48 (UTC)'.")
               ("Sep" . "9") ("Oct" . "10") ("Nov" . "11") ("Dec" . "12")))))
          (dayname (substring time 0 3)))
     (setq display-time-string
-          (mapconcat 'eval display-time-string-forms "")))
-  (run-hooks 'display-time-hook)
+          (mapconcat 'eval display-time-string-forms ""))
+    ;; This is inside the let binding, but we are not going to document
+    ;; what variables are available.
+    (run-hooks 'display-time-hook))
   (force-mode-line-update)
   ;; Do redisplay right now, if no input pending.
   (sit-for 0))