diff options
author | Karl Heuer <kwzh@gnu.org> | 1998-08-26 19:35:04 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1998-08-26 19:35:04 +0000 |
commit | 51eb19097565376ee7a9356a50206e0010dbbdf7 (patch) | |
tree | 3bff938b1191126daf278a164a6410da75eed5ed /lisp/midnight.el | |
parent | d6e0f29810f7775b7273e7bcb6682755a54c1976 (diff) | |
download | emacs-51eb19097565376ee7a9356a50206e0010dbbdf7.tar.gz |
Require `timer' not only when compiling.
Diffstat (limited to 'lisp/midnight.el')
-rw-r--r-- | lisp/midnight.el | 5 |
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 @@ ;;; Code: (eval-when-compile - (require 'cl) - (require 'timer)) + (require 'cl)) + +(require 'timer) (defgroup midnight nil "Run something every day at midnight." |