aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorKarl Heuer1998-08-26 19:35:04 +0000
committerKarl Heuer1998-08-26 19:35:04 +0000
commit51eb19097565376ee7a9356a50206e0010dbbdf7 (patch)
tree3bff938b1191126daf278a164a6410da75eed5ed /lisp
parentd6e0f29810f7775b7273e7bcb6682755a54c1976 (diff)
downloademacs-51eb19097565376ee7a9356a50206e0010dbbdf7.tar.gz
emacs-51eb19097565376ee7a9356a50206e0010dbbdf7.zip
Require `timer' not only when compiling.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/midnight.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/midnight.el b/lisp/midnight.el
index 0613af908a7..531a401f564 100644
--- a/lisp/midnight.el
+++ b/lisp/midnight.el
@@ -39,8 +39,9 @@
39;;; Code: 39;;; Code:
40 40
41(eval-when-compile 41(eval-when-compile
42 (require 'cl) 42 (require 'cl))
43 (require 'timer)) 43
44(require 'timer)
44 45
45(defgroup midnight nil 46(defgroup midnight nil
46 "Run something every day at midnight." 47 "Run something every day at midnight."