2015-04-27 23:07:51 +00:00
|
|
|
;;; midnight.el --- run something every midnight, e.g., kill old buffers -*- lexical-binding:t -*-
|
1998-06-12 02:04:21 +00:00
|
|
|
|
2018-01-01 08:21:42 +00:00
|
|
|
;; Copyright (C) 1998, 2001-2018 Free Software Foundation, Inc.
|
1998-06-12 02:04:21 +00:00
|
|
|
|
2010-03-23 16:27:10 +00:00
|
|
|
;; Author: Sam Steingold <sds@gnu.org>
|
|
|
|
;; Maintainer: Sam Steingold <sds@gnu.org>
|
2001-07-15 19:53:53 +00:00
|
|
|
;; Created: 1998-05-18
|
|
|
|
;; Keywords: utilities
|
1998-06-12 02:04:21 +00:00
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1998-06-12 02:04:21 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
1998-06-12 02:04:21 +00:00
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
1998-06-12 02:04:21 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; To use the file, put (require 'midnight) into your .emacs. Then, at
|
|
|
|
;; midnight, Emacs will run the normal hook `midnight-hook'. You can
|
|
|
|
;; put whatever you like there, say, `calendar'; by default there is
|
|
|
|
;; only one function there - `clean-buffer-list'. It will kill the
|
|
|
|
;; buffers matching `clean-buffer-list-kill-buffer-names' and
|
|
|
|
;; `clean-buffer-list-kill-regexps' and the buffers which where last
|
|
|
|
;; displayed more than `clean-buffer-list-delay-general' days ago,
|
|
|
|
;; keeping `clean-buffer-list-kill-never-buffer-names' and
|
|
|
|
;; `clean-buffer-list-kill-never-regexps'.
|
|
|
|
|
1998-08-10 00:01:12 +00:00
|
|
|
;;; Code:
|
|
|
|
|
2015-04-27 23:07:51 +00:00
|
|
|
(require 'cl-lib)
|
1998-08-26 19:35:04 +00:00
|
|
|
|
1998-06-12 02:04:21 +00:00
|
|
|
(defgroup midnight nil
|
|
|
|
"Run something every day at midnight."
|
1998-06-22 02:10:41 +00:00
|
|
|
:group 'calendar
|
|
|
|
:version "20.3")
|
1998-06-12 02:04:21 +00:00
|
|
|
|
2005-04-23 16:41:33 +00:00
|
|
|
(defvar midnight-timer nil
|
|
|
|
"Timer running the `midnight-hook' `midnight-delay' seconds after midnight.
|
|
|
|
Use `cancel-timer' to stop it and `midnight-delay-set' to change
|
|
|
|
the time when it is run.")
|
|
|
|
|
2015-04-27 23:07:51 +00:00
|
|
|
;;;###autoload
|
|
|
|
(define-minor-mode midnight-mode
|
|
|
|
"Non-nil means run `midnight-hook' at midnight."
|
|
|
|
:global t
|
|
|
|
:initialize #'custom-initialize-default
|
2016-03-27 15:15:06 +00:00
|
|
|
;; Disable first, since the ':initialize' function above already
|
|
|
|
;; starts the timer when the mode is turned on for the first time,
|
|
|
|
;; via setting 'midnight-delay', which calls 'midnight-delay-set',
|
|
|
|
;; which starts the timer.
|
|
|
|
(when (timerp midnight-timer) (cancel-timer midnight-timer))
|
|
|
|
(if midnight-mode (timer-activate midnight-timer)))
|
1998-06-15 22:11:48 +00:00
|
|
|
|
1998-06-12 02:04:21 +00:00
|
|
|
;;; clean-buffer-list stuff
|
|
|
|
|
|
|
|
(defcustom clean-buffer-list-delay-general 3
|
2008-12-03 05:48:14 +00:00
|
|
|
"The number of days before any buffer becomes eligible for autokilling.
|
1998-06-12 02:04:21 +00:00
|
|
|
The autokilling is done by `clean-buffer-list' when is it in `midnight-hook'.
|
|
|
|
Currently displayed and/or modified (unsaved) buffers, as well as buffers
|
|
|
|
matching `clean-buffer-list-kill-never-buffer-names' and
|
|
|
|
`clean-buffer-list-kill-never-regexps' are excluded."
|
2015-04-27 23:07:51 +00:00
|
|
|
:type 'integer)
|
1998-06-12 02:04:21 +00:00
|
|
|
|
|
|
|
(defcustom clean-buffer-list-delay-special 3600
|
2008-12-03 05:48:14 +00:00
|
|
|
"The number of seconds before some buffers become eligible for autokilling.
|
1998-06-12 02:04:21 +00:00
|
|
|
Buffers matched by `clean-buffer-list-kill-regexps' and
|
|
|
|
`clean-buffer-list-kill-buffer-names' are killed if they were last
|
|
|
|
displayed more than this many seconds ago."
|
2015-04-27 23:07:51 +00:00
|
|
|
:type 'integer)
|
1998-06-12 02:04:21 +00:00
|
|
|
|
2015-04-27 23:07:51 +00:00
|
|
|
(defcustom clean-buffer-list-kill-regexps '("\\`\\*Man ")
|
2008-12-03 05:48:14 +00:00
|
|
|
"List of regexps saying which buffers will be killed at midnight.
|
1998-06-12 02:04:21 +00:00
|
|
|
If buffer name matches a regexp in the list and the buffer was not displayed
|
|
|
|
in the last `clean-buffer-list-delay-special' seconds, it is killed by
|
|
|
|
`clean-buffer-list' when is it in `midnight-hook'.
|
1999-02-23 22:16:45 +00:00
|
|
|
If a member of the list is a cons, its `car' is the regexp and its `cdr' is
|
1998-06-12 02:04:21 +00:00
|
|
|
the number of seconds to use instead of `clean-buffer-list-delay-special'.
|
|
|
|
See also `clean-buffer-list-kill-buffer-names',
|
|
|
|
`clean-buffer-list-kill-never-regexps' and
|
2015-04-27 23:07:51 +00:00
|
|
|
`clean-buffer-list-kill-never-buffer-names'.
|
|
|
|
|
|
|
|
Each element can also be a function instead of a regexp, in which case
|
|
|
|
it takes a single argument (a buffer name) and should return non-nil
|
|
|
|
if the buffer should be killed by `clean-buffer-list'."
|
|
|
|
:type '(repeat
|
|
|
|
(choice (regexp :tag "Regexp matching Buffer Name")
|
|
|
|
(function :tag "Predicate function"))))
|
1998-06-12 02:04:21 +00:00
|
|
|
|
|
|
|
(defcustom clean-buffer-list-kill-buffer-names
|
2013-09-24 17:34:51 +00:00
|
|
|
'("*Help*" "*Apropos*" "*Buffer List*" "*Compile-Log*" "*info*"
|
1998-08-10 00:01:12 +00:00
|
|
|
"*vc*" "*vc-diff*" "*diff*")
|
2008-12-03 05:48:14 +00:00
|
|
|
"List of strings saying which buffers will be killed at midnight.
|
1998-06-12 02:04:21 +00:00
|
|
|
Buffers with names in this list, which were not displayed in the last
|
|
|
|
`clean-buffer-list-delay-special' seconds, are killed by `clean-buffer-list'
|
|
|
|
when is it in `midnight-hook'.
|
1999-02-23 22:16:45 +00:00
|
|
|
If a member of the list is a cons, its `car' is the name and its `cdr' is
|
1998-06-12 02:04:21 +00:00
|
|
|
the number of seconds to use instead of `clean-buffer-list-delay-special'.
|
|
|
|
See also `clean-buffer-list-kill-regexps',
|
|
|
|
`clean-buffer-list-kill-never-regexps' and
|
|
|
|
`clean-buffer-list-kill-never-buffer-names'."
|
2015-04-27 23:07:51 +00:00
|
|
|
:type '(repeat (string :tag "Buffer Name")))
|
1998-06-12 02:04:21 +00:00
|
|
|
|
|
|
|
(defcustom clean-buffer-list-kill-never-buffer-names
|
2011-01-27 19:45:44 +00:00
|
|
|
'("*scratch*" "*Messages*")
|
2008-12-03 05:48:14 +00:00
|
|
|
"List of buffer names which will never be killed by `clean-buffer-list'.
|
1998-06-12 02:04:21 +00:00
|
|
|
See also `clean-buffer-list-kill-never-regexps'.
|
|
|
|
Note that this does override `clean-buffer-list-kill-regexps' and
|
|
|
|
`clean-buffer-list-kill-buffer-names' so a buffer matching any of these
|
|
|
|
two lists will NOT be killed if it is also present in this list."
|
2015-04-27 23:07:51 +00:00
|
|
|
:type '(repeat (string :tag "Buffer Name")))
|
1998-06-22 02:10:41 +00:00
|
|
|
|
2015-04-27 23:07:51 +00:00
|
|
|
(defcustom clean-buffer-list-kill-never-regexps '("\\` \\*Minibuf-.*\\*\\'")
|
2008-12-03 05:48:14 +00:00
|
|
|
"List of regexp saying which buffers will never be killed at midnight.
|
1998-06-12 02:04:21 +00:00
|
|
|
See also `clean-buffer-list-kill-never-buffer-names'.
|
|
|
|
Killing is done by `clean-buffer-list'.
|
|
|
|
Note that this does override `clean-buffer-list-kill-regexps' and
|
|
|
|
`clean-buffer-list-kill-buffer-names' so a buffer matching any of these
|
2015-04-27 23:07:51 +00:00
|
|
|
two lists will NOT be killed if it also matches anything in this list.
|
1998-06-12 02:04:21 +00:00
|
|
|
|
2015-04-27 23:07:51 +00:00
|
|
|
Each element can also be a function instead of a regexp, in which case
|
|
|
|
it takes a single argument (a buffer name) and should return non-nil
|
|
|
|
if the buffer should never be killed by `clean-buffer-list'."
|
|
|
|
:type '(repeat
|
|
|
|
(choice (regexp :tag "Regexp matching Buffer Name")
|
|
|
|
(function :tag "Predicate function"))))
|
1998-07-31 10:24:41 +00:00
|
|
|
|
1998-08-04 05:36:07 +00:00
|
|
|
(defun clean-buffer-list-delay (name)
|
|
|
|
"Return the delay, in seconds, before killing a buffer named NAME.
|
1998-06-12 02:04:21 +00:00
|
|
|
Uses `clean-buffer-list-kill-buffer-names', `clean-buffer-list-kill-regexps'
|
|
|
|
`clean-buffer-list-delay-general' and `clean-buffer-list-delay-special'.
|
|
|
|
Autokilling is done by `clean-buffer-list'."
|
2015-04-27 23:07:51 +00:00
|
|
|
(or (assoc-default name clean-buffer-list-kill-buffer-names #'string=
|
1998-07-31 10:24:41 +00:00
|
|
|
clean-buffer-list-delay-special)
|
2015-04-27 23:07:51 +00:00
|
|
|
(assoc-default name clean-buffer-list-kill-regexps
|
|
|
|
(lambda (re str)
|
|
|
|
(if (functionp re)
|
|
|
|
(funcall re str) (string-match re str)))
|
1998-07-31 10:24:41 +00:00
|
|
|
clean-buffer-list-delay-special)
|
|
|
|
(* clean-buffer-list-delay-general 24 60 60)))
|
1998-06-12 02:04:21 +00:00
|
|
|
|
1998-10-06 23:35:50 +00:00
|
|
|
;;;###autoload
|
1998-06-12 02:04:21 +00:00
|
|
|
(defun clean-buffer-list ()
|
1998-08-04 05:36:07 +00:00
|
|
|
"Kill old buffers that have not been displayed recently.
|
1998-08-10 00:01:12 +00:00
|
|
|
The relevant variables are `clean-buffer-list-delay-general',
|
1998-06-12 02:04:21 +00:00
|
|
|
`clean-buffer-list-delay-special', `clean-buffer-list-kill-buffer-names',
|
|
|
|
`clean-buffer-list-kill-never-buffer-names',
|
1998-08-10 00:01:12 +00:00
|
|
|
`clean-buffer-list-kill-regexps' and
|
|
|
|
`clean-buffer-list-kill-never-regexps'.
|
|
|
|
While processing buffers, this procedure displays messages containing
|
|
|
|
the current date/time, buffer name, how many seconds ago it was
|
1998-08-18 11:02:18 +00:00
|
|
|
displayed (can be nil if the buffer was never displayed) and its
|
|
|
|
lifetime, i.e., its \"age\" when it will be purged."
|
1998-06-12 02:04:21 +00:00
|
|
|
(interactive)
|
2016-10-16 03:27:46 +00:00
|
|
|
(let ((tm (current-time)) bts (ts (format-time-string "%Y-%m-%d %T"))
|
2006-03-03 12:12:06 +00:00
|
|
|
delay cbld bn)
|
|
|
|
(dolist (buf (buffer-list))
|
|
|
|
(when (buffer-live-p buf)
|
2016-10-16 03:27:46 +00:00
|
|
|
(setq bts (with-current-buffer buf buffer-display-time)
|
|
|
|
bn (buffer-name buf)
|
|
|
|
delay (if bts (round (float-time (time-subtract tm bts))) 0)
|
|
|
|
cbld (clean-buffer-list-delay bn))
|
|
|
|
(message "[%s] `%s' [%s %d]" ts bn delay cbld)
|
|
|
|
(unless (or (cl-find bn clean-buffer-list-kill-never-regexps
|
2015-04-27 23:07:51 +00:00
|
|
|
:test (lambda (bn re)
|
|
|
|
(if (functionp re)
|
|
|
|
(funcall re bn)
|
|
|
|
(string-match re bn))))
|
2016-10-16 03:27:46 +00:00
|
|
|
(cl-find bn clean-buffer-list-kill-never-buffer-names
|
2015-04-27 23:07:51 +00:00
|
|
|
:test #'string-equal)
|
2016-10-16 03:27:46 +00:00
|
|
|
(get-buffer-process buf)
|
|
|
|
(and (buffer-file-name buf) (buffer-modified-p buf))
|
|
|
|
(get-buffer-window buf 'visible)
|
|
|
|
(< delay cbld))
|
|
|
|
(message "[%s] killing `%s'" ts bn)
|
|
|
|
(kill-buffer buf))))))
|
1998-06-12 02:04:21 +00:00
|
|
|
|
|
|
|
;;; midnight hook
|
|
|
|
|
|
|
|
(defvar midnight-period (* 24 60 60)
|
1998-08-04 05:36:07 +00:00
|
|
|
"The number of seconds in a day--the delta for `midnight-timer'.")
|
1998-06-12 02:04:21 +00:00
|
|
|
|
1998-08-18 11:02:18 +00:00
|
|
|
(defcustom midnight-hook '(clean-buffer-list)
|
1998-06-12 02:04:21 +00:00
|
|
|
"The hook run `midnight-delay' seconds after midnight every day.
|
|
|
|
The default value is `clean-buffer-list'."
|
2015-04-27 23:07:51 +00:00
|
|
|
:type 'hook)
|
1998-06-12 02:04:21 +00:00
|
|
|
|
|
|
|
(defun midnight-next ()
|
|
|
|
"Return the number of seconds till the next midnight."
|
More CL cleanups and reduction of use of cl.el.
* woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
* vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
* textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
* strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
* progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
* play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
* play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
* net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
* image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
* eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
* eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
* eshell/em-cmpl.el, eshell/em-banner.el:
* url/url.el, url/url-queue.el, url/url-parse.el, url/url-http.el:
* url/url-future.el, url/url-dav.el, url/url-cookie.el:
* calendar/parse-time.el, test/eshell.el: Use cl-lib.
* wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
* vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
* textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
* term/ns-win.el, term.el, shell.el, ps-samp.el:
* progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
* progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
* play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
* net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
* net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
* mail/mailheader.el, mail/feedmail.el:
* url/url-util.el, url/url-privacy.el, url/url-nfs.el, url/url-misc.el:
* url/url-methods.el, url/url-gw.el, url/url-file.el, url/url-expand.el:
Dont use CL.
* ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
* eshell/esh-opt.el (eshell-eval-using-options): Quote code with
`lambda' rather than with `quote'.
(eshell-do-opt): Adjust accordingly.
(eshell-process-option): Simplify.
* eshell/esh-var.el:
* eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
* emacs-pcase.el (pcase--dontcare-upats, pcase--let*)
(pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
to `pcase--dontcare'.
* emacs-cl.el (labels): Mark obsolete.
(cl--letf, letf): Move to cl-lib.
(cl--letf*, letf*): Remove.
* emacs-cl-lib.el (cl-nth-value): Use defalias.
* emacs-cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
(cl-progv): Rewrite.
(cl--letf, cl-letf): Move from cl.el.
(cl-letf*): New macro.
* emacs-cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2012-07-11 23:13:41 +00:00
|
|
|
(pcase-let ((`(,sec ,min ,hrs) (decode-time)))
|
1998-06-12 02:04:21 +00:00
|
|
|
(- (* 24 60 60) (* 60 60 hrs) (* 60 min) sec)))
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun midnight-delay-set (symb tm)
|
|
|
|
"Modify `midnight-timer' according to `midnight-delay'.
|
1998-08-10 00:01:12 +00:00
|
|
|
Sets the first argument SYMB (which must be symbol `midnight-delay')
|
|
|
|
to its second argument TM."
|
More CL cleanups and reduction of use of cl.el.
* woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
* vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
* textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
* strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
* progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
* play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
* play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
* net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
* image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
* eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
* eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
* eshell/em-cmpl.el, eshell/em-banner.el:
* url/url.el, url/url-queue.el, url/url-parse.el, url/url-http.el:
* url/url-future.el, url/url-dav.el, url/url-cookie.el:
* calendar/parse-time.el, test/eshell.el: Use cl-lib.
* wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
* vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
* textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
* term/ns-win.el, term.el, shell.el, ps-samp.el:
* progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
* progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
* play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
* net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
* net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
* mail/mailheader.el, mail/feedmail.el:
* url/url-util.el, url/url-privacy.el, url/url-nfs.el, url/url-misc.el:
* url/url-methods.el, url/url-gw.el, url/url-file.el, url/url-expand.el:
Dont use CL.
* ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
* eshell/esh-opt.el (eshell-eval-using-options): Quote code with
`lambda' rather than with `quote'.
(eshell-do-opt): Adjust accordingly.
(eshell-process-option): Simplify.
* eshell/esh-var.el:
* eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
* emacs-pcase.el (pcase--dontcare-upats, pcase--let*)
(pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
to `pcase--dontcare'.
* emacs-cl.el (labels): Mark obsolete.
(cl--letf, letf): Move to cl-lib.
(cl--letf*, letf*): Remove.
* emacs-cl-lib.el (cl-nth-value): Use defalias.
* emacs-cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
(cl-progv): Rewrite.
(cl--letf, cl-letf): Move from cl.el.
(cl-letf*): New macro.
* emacs-cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2012-07-11 23:13:41 +00:00
|
|
|
(cl-assert (eq symb 'midnight-delay) t
|
|
|
|
"Invalid argument to `midnight-delay-set': `%s'")
|
1998-06-12 02:04:21 +00:00
|
|
|
(set symb tm)
|
|
|
|
(when (timerp midnight-timer) (cancel-timer midnight-timer))
|
|
|
|
(setq midnight-timer
|
|
|
|
(run-at-time (if (numberp tm) (+ (midnight-next) tm) tm)
|
2015-04-27 23:07:51 +00:00
|
|
|
midnight-period #'run-hooks 'midnight-hook)))
|
1998-06-12 02:04:21 +00:00
|
|
|
|
|
|
|
(defcustom midnight-delay 3600
|
2008-12-03 05:48:14 +00:00
|
|
|
"The number of seconds after the midnight when the `midnight-timer' is run.
|
1998-06-12 02:04:21 +00:00
|
|
|
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'."
|
2016-01-30 19:48:18 +00:00
|
|
|
:type '(choice integer string)
|
2015-04-27 23:07:51 +00:00
|
|
|
:set #'midnight-delay-set)
|
1998-06-12 02:04:21 +00:00
|
|
|
|
|
|
|
(provide 'midnight)
|
|
|
|
|
|
|
|
;;; midnight.el ends here
|