Variable: midnight-delay

midnight-delay is a customizable variable defined in midnight.el.gz.

Value

3600

Documentation

The number of seconds after the midnight when the midnight-timer is run.

You should set this variable before loading midnight.el, or set it by calling midnight-delay-set, or use custom. If you wish, you can use a string instead, it will be passed as the first argument to run-at-time.

Source Code

;; Defined in /usr/src/emacs/lisp/midnight.el.gz
(defcustom midnight-delay 3600
  "The number of seconds after the midnight when the `midnight-timer' is run.
You should set this variable before loading midnight.el, or
set it by calling `midnight-delay-set', or use `custom'.
If you wish, you can use a string instead, it will be passed as the
first argument to `run-at-time'."
  :type '(choice integer string)
  :set #'midnight-delay-set)