]> git.eshelyaron.com Git - emacs.git/commitdiff
(midnight-delay-set): Use run-hooks directly.
authorRichard M. Stallman <rms@gnu.org>
Fri, 7 Aug 1998 23:43:51 +0000 (23:43 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 7 Aug 1998 23:43:51 +0000 (23:43 +0000)
(midnight-timer-function): Function deleted.

lisp/midnight.el

index 062d3fae09fc512d9ff7ad798076a421b480199e..48e4c203c8f8dc47f7c41ff6d5eda57045d7f9f6 100644 (file)
@@ -215,11 +215,7 @@ to its second argument."
   (when (timerp midnight-timer) (cancel-timer midnight-timer))
   (setq midnight-timer
         (run-at-time (if (numberp tm) (+ (midnight-next) tm) tm)
-                     midnight-period 'midnight-timer-function)))
-
-(defun midnight-timer-function ()
-  "This is the function run by the `midnight-mode' timer once each day."
-  (run-hooks 'midnight-hook))
+                     midnight-period 'run-hooks 'midnight-hook)))
 
 (defcustom midnight-delay 3600
   "*The number of seconds after the midnight when the `midnight-timer' is run.