2018-01-10 16:45:33 +00:00
|
|
|
;;; appt.el --- appointment notification functions -*- lexical-binding:t -*-
|
1992-05-30 23:54:21 +00:00
|
|
|
|
2024-01-02 01:47:10 +00:00
|
|
|
;; Copyright (C) 1989-1990, 1994, 1998, 2001-2024 Free Software
|
2013-01-01 09:11:05 +00:00
|
|
|
;; Foundation, Inc.
|
1992-07-22 04:22:42 +00:00
|
|
|
|
1992-07-16 21:47:34 +00:00
|
|
|
;; Author: Neil Mager <neilm@juliet.ll.mit.edu>
|
2019-06-01 19:11:55 +00:00
|
|
|
;; Maintainer: emacs-devel@gnu.org
|
1992-07-16 21:47:34 +00:00
|
|
|
;; Keywords: calendar
|
2010-08-29 16:17:13 +00:00
|
|
|
;; Package: calendar
|
1992-07-16 21:47:34 +00:00
|
|
|
|
1991-01-30 21:30:11 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 03:07:58 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1991-01-30 21:30:11 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 03:07:58 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
1991-01-30 21:30:11 +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/>.
|
1991-01-30 21:30:11 +00:00
|
|
|
|
1992-07-16 21:47:34 +00:00
|
|
|
;;; Commentary:
|
|
|
|
|
1991-01-30 21:30:11 +00:00
|
|
|
;;
|
|
|
|
;; appt.el - visible and/or audible notification of
|
2004-01-11 22:24:57 +00:00
|
|
|
;; appointments from diary file.
|
1991-01-30 21:30:11 +00:00
|
|
|
;;
|
2008-03-26 03:42:57 +00:00
|
|
|
;;
|
|
|
|
;; Thanks to Edward M. Reingold for much help and many suggestions,
|
|
|
|
;; And to many others for bug fixes and suggestions.
|
|
|
|
;;
|
|
|
|
;;
|
|
|
|
;; This functions in this file will alert the user of a
|
|
|
|
;; pending appointment based on his/her diary file. This package
|
|
|
|
;; is documented in the Emacs manual.
|
|
|
|
;;
|
|
|
|
;; To activate this package, simply use (appt-activate 1).
|
|
|
|
;; A `diary-file' with appointments of the format described in the
|
|
|
|
;; documentation of the function `appt-check' is required.
|
|
|
|
;; Relevant customizable variables are also listed in the
|
|
|
|
;; documentation of that function.
|
|
|
|
;;
|
|
|
|
;; Today's appointment list is initialized from the diary when this
|
2008-08-26 03:03:21 +00:00
|
|
|
;; package is activated. Additionally, the appointments list is
|
2008-03-26 03:42:57 +00:00
|
|
|
;; recreated automatically at 12:01am for those who do not logout
|
2008-08-26 03:03:21 +00:00
|
|
|
;; every day or are programming late. It is also updated when the
|
2010-09-14 07:21:03 +00:00
|
|
|
;; `diary-file' (or a file it includes) is saved. Calling
|
|
|
|
;; `appt-check' with an argument (or re-enabling the package) forces a
|
|
|
|
;; re-initialization at any time.
|
2008-03-26 03:42:57 +00:00
|
|
|
;;
|
|
|
|
;; In order to add or delete items from today's list, without
|
|
|
|
;; changing the diary file, use `appt-add' and `appt-delete'.
|
|
|
|
;;
|
|
|
|
|
|
|
|
;; Brief internal description - Skip this if you are not interested!
|
|
|
|
;;
|
|
|
|
;; The function `appt-make-list' creates the appointments list which
|
|
|
|
;; `appt-check' reads.
|
|
|
|
;;
|
|
|
|
;; You can change the way the appointment window is created/deleted by
|
2011-05-17 02:36:51 +00:00
|
|
|
;; setting the variables `appt-disp-window-function' and
|
|
|
|
;; `appt-delete-window-function'. For instance, you could be set them
|
|
|
|
;; to functions that display appointments in pop-up frames, which are
|
|
|
|
;; lowered or iconified after `appt-display-interval' minutes.
|
2008-03-26 03:42:57 +00:00
|
|
|
;;
|
1992-07-16 21:47:34 +00:00
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2008-04-10 03:43:52 +00:00
|
|
|
(require 'diary-lib)
|
1994-08-09 23:26:27 +00:00
|
|
|
|
2008-03-08 03:38:14 +00:00
|
|
|
|
|
|
|
(defgroup appt nil
|
|
|
|
"Appointment notification."
|
2008-04-10 03:43:52 +00:00
|
|
|
:prefix "appt-"
|
2008-03-08 03:38:14 +00:00
|
|
|
:group 'calendar)
|
|
|
|
|
1997-05-03 04:53:02 +00:00
|
|
|
(defcustom appt-message-warning-time 12
|
2011-05-17 02:36:51 +00:00
|
|
|
"Default time in minutes before an appointment that the warning begins.
|
|
|
|
You probably want to make `appt-display-interval' a factor of this."
|
1997-05-03 04:53:02 +00:00
|
|
|
:type 'integer
|
|
|
|
:group 'appt)
|
1991-01-30 21:30:11 +00:00
|
|
|
|
2011-05-06 07:14:30 +00:00
|
|
|
(defcustom appt-warning-time-regexp "warntime \\([0-9]+\\)"
|
|
|
|
"Regexp matching a string giving the warning time for an appointment.
|
|
|
|
The first subexpression matches the time in minutes (an integer).
|
|
|
|
This overrides the default `appt-message-warning-time'.
|
|
|
|
You may want to put this inside a diary comment (see `diary-comment-start').
|
|
|
|
For example, to be warned 30 minutes in advance of an appointment:
|
2018-01-10 16:45:33 +00:00
|
|
|
2011/06/01 12:00 Do something ## warntime 30"
|
2011-05-06 07:14:30 +00:00
|
|
|
:version "24.1"
|
|
|
|
:type 'regexp
|
|
|
|
:group 'appt)
|
|
|
|
|
1997-05-03 04:53:02 +00:00
|
|
|
(defcustom appt-audible t
|
2007-11-24 21:40:02 +00:00
|
|
|
"Non-nil means beep to indicate appointment."
|
1997-05-03 04:53:02 +00:00
|
|
|
:type 'boolean
|
|
|
|
:group 'appt)
|
1991-01-30 21:30:11 +00:00
|
|
|
|
2004-01-11 22:24:57 +00:00
|
|
|
;; TODO - add popup.
|
2010-09-30 02:15:17 +00:00
|
|
|
(defcustom appt-display-format 'window
|
2004-01-11 22:24:57 +00:00
|
|
|
"How appointment reminders should be displayed.
|
|
|
|
The options are:
|
|
|
|
window - use a separate window
|
|
|
|
echo - use the echo area
|
|
|
|
nil - no visible reminder.
|
2010-09-30 02:15:17 +00:00
|
|
|
See also `appt-audible' and `appt-display-mode-line'."
|
2004-01-11 22:24:57 +00:00
|
|
|
:type '(choice
|
|
|
|
(const :tag "Separate window" window)
|
|
|
|
(const :tag "Echo-area" echo)
|
2010-09-30 02:15:17 +00:00
|
|
|
(const :tag "No visible display" nil))
|
2004-01-11 22:24:57 +00:00
|
|
|
:group 'appt
|
2010-09-30 02:15:17 +00:00
|
|
|
:version "24.1") ; no longer inherit from deleted obsolete variables
|
2004-01-11 22:24:57 +00:00
|
|
|
|
|
|
|
(defcustom appt-display-mode-line t
|
2007-11-24 21:40:02 +00:00
|
|
|
"Non-nil means display minutes to appointment and time on the mode line.
|
2011-05-17 02:36:51 +00:00
|
|
|
This is in addition to any other display of appointment messages.
|
2011-05-17 04:05:39 +00:00
|
|
|
The mode line updates every minute, independent of the value of
|
2011-05-17 02:36:51 +00:00
|
|
|
`appt-display-interval'."
|
1997-05-03 04:53:02 +00:00
|
|
|
:type 'boolean
|
|
|
|
:group 'appt)
|
1991-01-30 21:30:11 +00:00
|
|
|
|
1997-05-03 04:53:02 +00:00
|
|
|
(defcustom appt-display-duration 10
|
2007-11-24 21:40:02 +00:00
|
|
|
"The number of seconds an appointment message is displayed.
|
2004-01-11 22:24:57 +00:00
|
|
|
Only relevant if reminders are to be displayed in their own window."
|
1997-05-03 04:53:02 +00:00
|
|
|
:type 'integer
|
|
|
|
:group 'appt)
|
1991-01-30 21:30:11 +00:00
|
|
|
|
1997-05-03 04:53:02 +00:00
|
|
|
(defcustom appt-display-diary t
|
2007-11-24 21:40:02 +00:00
|
|
|
"Non-nil displays the diary when the appointment list is first initialized.
|
2011-05-17 02:36:51 +00:00
|
|
|
This occurs when this package is first activated, and then at
|
|
|
|
midnight when the appointment list updates."
|
1997-05-03 04:53:02 +00:00
|
|
|
:type 'boolean
|
|
|
|
:group 'appt)
|
1991-01-30 21:30:11 +00:00
|
|
|
|
1997-05-03 04:53:02 +00:00
|
|
|
(defcustom appt-display-interval 3
|
2011-05-17 02:36:51 +00:00
|
|
|
"Interval in minutes at which to display appointment reminders.
|
|
|
|
Once an appointment becomes due, Emacs displays reminders every
|
|
|
|
`appt-display-interval' minutes. You probably want to make
|
|
|
|
`appt-message-warning-time' be a multiple of this, so that you get
|
|
|
|
a final message displayed precisely when the appointment is due.
|
|
|
|
|
|
|
|
Note that this variable controls the interval at which
|
|
|
|
`appt-display-message' is called. The mode line display (if active)
|
|
|
|
always updates every minute."
|
1997-05-03 04:53:02 +00:00
|
|
|
:type 'integer
|
|
|
|
:group 'appt)
|
2003-02-04 13:24:35 +00:00
|
|
|
|
2018-01-10 16:45:33 +00:00
|
|
|
(defcustom appt-disp-window-function #'appt-disp-window
|
2004-01-11 22:24:57 +00:00
|
|
|
"Function called to display appointment window.
|
2008-04-02 03:50:34 +00:00
|
|
|
Only relevant if reminders are being displayed in a window.
|
|
|
|
It should take three string arguments: the number of minutes till
|
2011-06-11 17:54:53 +00:00
|
|
|
the appointment, the current time, and the text of the appointment.
|
|
|
|
Each argument may also be a list, if multiple appointments are
|
|
|
|
relevant at any one time."
|
2011-05-17 02:36:51 +00:00
|
|
|
:type 'function
|
2004-01-11 22:24:57 +00:00
|
|
|
:group 'appt)
|
|
|
|
|
2018-01-10 16:45:33 +00:00
|
|
|
(defcustom appt-delete-window-function #'appt-delete-window
|
2004-01-11 22:24:57 +00:00
|
|
|
"Function called to remove appointment window and buffer.
|
|
|
|
Only relevant if reminders are being displayed in a window."
|
2011-05-17 02:36:51 +00:00
|
|
|
:type 'function
|
2004-01-11 22:24:57 +00:00
|
|
|
:group 'appt)
|
|
|
|
|
2023-02-20 19:03:08 +00:00
|
|
|
(defface appt-notification
|
|
|
|
'((t :inherit mode-line-emphasis))
|
|
|
|
"Face for appointment notification on the modeline.
|
|
|
|
Shown when `appt-display-mode-line' is non-nil."
|
|
|
|
:group 'mode-line-faces
|
|
|
|
:version "30.1")
|
2004-01-11 22:24:57 +00:00
|
|
|
|
|
|
|
;;; Internal variables below this point.
|
|
|
|
|
2008-03-26 03:42:57 +00:00
|
|
|
(defconst appt-buffer-name "*appt-buf*"
|
1994-01-21 21:21:20 +00:00
|
|
|
"Name of the appointments buffer.")
|
2003-02-04 13:24:35 +00:00
|
|
|
|
2010-06-15 03:42:33 +00:00
|
|
|
;; TODO Turn this into an alist? It would be easier to add more
|
|
|
|
;; optional elements.
|
2011-05-13 01:35:11 +00:00
|
|
|
;; Why is the first element (MINUTES) rather than just MINUTES?
|
|
|
|
;; It may just inherit from diary-entries-list, where we have
|
|
|
|
;; ((MONTH DAY YEAR) ENTRY)
|
2004-01-11 22:24:57 +00:00
|
|
|
(defvar appt-time-msg-list nil
|
|
|
|
"The list of appointments for today.
|
|
|
|
Use `appt-add' and `appt-delete' to add and delete appointments.
|
|
|
|
The original list is generated from today's `diary-entries-list', and
|
|
|
|
can be regenerated using the function `appt-check'.
|
2010-06-15 03:42:33 +00:00
|
|
|
Each element of the generated list has the form
|
2011-05-13 01:35:11 +00:00
|
|
|
\((MINUTES) STRING [FLAG] [WARNTIME])
|
2010-06-15 03:42:33 +00:00
|
|
|
where MINUTES is the time in minutes of the appointment after midnight,
|
|
|
|
and STRING is the description of the appointment.
|
2011-05-07 01:19:27 +00:00
|
|
|
FLAG and WARNTIME are not always present. A non-nil FLAG
|
|
|
|
indicates that the element was made with `appt-add', so calling
|
|
|
|
`appt-make-list' again should preserve it. If WARNTIME is non-nil,
|
|
|
|
it is an integer to use in place of `appt-message-warning-time'.")
|
2003-02-04 13:24:35 +00:00
|
|
|
|
2005-10-04 20:51:16 +00:00
|
|
|
(defconst appt-max-time (1- (* 24 60))
|
2004-01-11 22:24:57 +00:00
|
|
|
"11:59pm in minutes - number of minutes in a day minus 1.")
|
1993-11-16 03:30:08 +00:00
|
|
|
|
1998-08-26 21:14:25 +00:00
|
|
|
(defvar appt-mode-string nil
|
1998-09-21 19:45:14 +00:00
|
|
|
"String being displayed in the mode line saying you have an appointment.
|
2004-01-11 22:24:57 +00:00
|
|
|
The actual string includes the amount of time till the appointment.
|
|
|
|
Only used if `appt-display-mode-line' is non-nil.")
|
2008-03-13 03:48:35 +00:00
|
|
|
(put 'appt-mode-string 'risky-local-variable t) ; for 'face property
|
1998-09-21 19:45:14 +00:00
|
|
|
|
|
|
|
(defvar appt-prev-comp-time nil
|
2011-05-17 02:36:51 +00:00
|
|
|
"Time of day (mins since midnight) at which we last checked appointments.")
|
1998-09-21 19:45:14 +00:00
|
|
|
|
2011-05-17 02:36:51 +00:00
|
|
|
(defvar appt-display-count 0
|
2004-01-11 22:24:57 +00:00
|
|
|
"Internal variable used to count number of consecutive reminders.")
|
1998-08-26 21:14:25 +00:00
|
|
|
|
2004-01-11 22:24:57 +00:00
|
|
|
(defvar appt-timer nil
|
|
|
|
"Timer used for diary appointment notifications (`appt-check').
|
|
|
|
If this is non-nil, appointment checking is active.")
|
|
|
|
|
|
|
|
|
|
|
|
;;; Functions.
|
|
|
|
|
|
|
|
(defun appt-display-message (string mins)
|
|
|
|
"Display a reminder about an appointment.
|
|
|
|
The string STRING describes the appointment, due in integer MINS minutes.
|
2011-06-09 05:08:11 +00:00
|
|
|
The arguments may also be lists, where each element relates to a
|
|
|
|
separate appointment. The variable `appt-display-format' controls
|
|
|
|
the format of the visible reminder. If `appt-audible' is non-nil,
|
|
|
|
also calls `beep' for an audible reminder."
|
2010-09-30 02:15:17 +00:00
|
|
|
(if appt-audible (beep 1))
|
2011-06-09 05:08:11 +00:00
|
|
|
;; Backwards compatibility: avoid passing lists to a-d-w-f if not necessary.
|
|
|
|
(and (listp mins)
|
|
|
|
(= (length mins) 1)
|
|
|
|
(setq mins (car mins)
|
|
|
|
string (car string)))
|
2010-09-30 02:15:17 +00:00
|
|
|
(cond ((eq appt-display-format 'window)
|
2011-06-09 05:08:11 +00:00
|
|
|
;; TODO use calendar-month-abbrev-array rather than %b?
|
2018-01-10 16:45:33 +00:00
|
|
|
(let ((time (format-time-string "%a %b %e ")))
|
2011-06-09 05:08:11 +00:00
|
|
|
(condition-case err
|
|
|
|
(funcall appt-disp-window-function
|
|
|
|
(if (listp mins)
|
2018-01-10 16:45:33 +00:00
|
|
|
(mapcar #'number-to-string mins)
|
2011-06-09 05:08:11 +00:00
|
|
|
(number-to-string mins))
|
|
|
|
time string)
|
|
|
|
(wrong-type-argument
|
|
|
|
(if (not (listp mins))
|
|
|
|
(signal (car err) (cdr err))
|
Go back to grave quoting in source-code docstrings etc.
This reverts almost all my recent changes to use curved quotes
in docstrings and/or strings used for error diagnostics.
There are a few exceptions, e.g., Bahá’í proper names.
* admin/unidata/unidata-gen.el (unidata-gen-table):
* lisp/abbrev.el (expand-region-abbrevs):
* lisp/align.el (align-region):
* lisp/allout.el (allout-mode, allout-solicit-alternate-bullet)
(outlineify-sticky):
* lisp/apropos.el (apropos-library):
* lisp/bookmark.el (bookmark-default-annotation-text):
* lisp/button.el (button-category-symbol, button-put)
(make-text-button):
* lisp/calc/calc-aent.el (math-read-if, math-read-factor):
* lisp/calc/calc-embed.el (calc-do-embedded):
* lisp/calc/calc-ext.el (calc-user-function-list):
* lisp/calc/calc-graph.el (calc-graph-show-dumb):
* lisp/calc/calc-help.el (calc-describe-key)
(calc-describe-thing, calc-full-help):
* lisp/calc/calc-lang.el (calc-c-language)
(math-parse-fortran-vector-end, math-parse-tex-sum)
(math-parse-eqn-matrix, math-parse-eqn-prime)
(calc-yacas-language, calc-maxima-language, calc-giac-language)
(math-read-giac-subscr, math-read-math-subscr)
(math-read-big-rec, math-read-big-balance):
* lisp/calc/calc-misc.el (calc-help, report-calc-bug):
* lisp/calc/calc-mode.el (calc-auto-why, calc-save-modes)
(calc-auto-recompute):
* lisp/calc/calc-prog.el (calc-fix-token-name)
(calc-read-parse-table-part, calc-user-define-invocation)
(math-do-arg-check):
* lisp/calc/calc-store.el (calc-edit-variable):
* lisp/calc/calc-units.el (math-build-units-table-buffer):
* lisp/calc/calc-vec.el (math-read-brackets):
* lisp/calc/calc-yank.el (calc-edit-mode):
* lisp/calc/calc.el (calc, calc-do, calc-user-invocation):
* lisp/calendar/appt.el (appt-display-message):
* lisp/calendar/diary-lib.el (diary-check-diary-file)
(diary-mail-entries, diary-from-outlook):
* lisp/calendar/icalendar.el (icalendar-export-region)
(icalendar--convert-float-to-ical)
(icalendar--convert-date-to-ical)
(icalendar--convert-ical-to-diary)
(icalendar--convert-recurring-to-diary)
(icalendar--add-diary-entry):
* lisp/calendar/time-date.el (format-seconds):
* lisp/calendar/timeclock.el (timeclock-mode-line-display)
(timeclock-make-hours-explicit, timeclock-log-data):
* lisp/calendar/todo-mode.el (todo-prefix, todo-delete-category)
(todo-item-mark, todo-check-format)
(todo-insert-item--next-param, todo-edit-item--next-key)
(todo-mode):
* lisp/cedet/ede/pmake.el (ede-proj-makefile-insert-dist-rules):
* lisp/cedet/mode-local.el (describe-mode-local-overload)
(mode-local-print-binding, mode-local-describe-bindings-2):
* lisp/cedet/semantic/complete.el (semantic-displayor-show-request):
* lisp/cedet/srecode/srt-mode.el (srecode-macro-help):
* lisp/cus-start.el (standard):
* lisp/cus-theme.el (describe-theme-1):
* lisp/custom.el (custom-add-dependencies, custom-check-theme)
(custom--sort-vars-1, load-theme):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/dired-x.el (dired-do-run-mail):
* lisp/dired.el (dired-log):
* lisp/emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-read-advice-name, ad-enable-advice)
(ad-disable-advice, ad-remove-advice, ad-set-argument)
(ad-set-arguments, ad--defalias-fset, ad-activate)
(ad-deactivate):
* lisp/emacs-lisp/byte-opt.el (byte-compile-inline-expand)
(byte-compile-unfold-lambda, byte-optimize-form-code-walker)
(byte-optimize-while, byte-optimize-apply):
* lisp/emacs-lisp/byte-run.el (defun, defsubst):
* lisp/emacs-lisp/bytecomp.el (byte-compile-lapcode)
(byte-compile-log-file, byte-compile-format-warn)
(byte-compile-nogroup-warn, byte-compile-arglist-warn)
(byte-compile-cl-warn)
(byte-compile-warn-about-unresolved-functions)
(byte-compile-file, byte-compile--declare-var)
(byte-compile-file-form-defmumble, byte-compile-form)
(byte-compile-normal-call, byte-compile-check-variable)
(byte-compile-variable-ref, byte-compile-variable-set)
(byte-compile-subr-wrong-args, byte-compile-setq-default)
(byte-compile-negation-optimizer)
(byte-compile-condition-case--old)
(byte-compile-condition-case--new, byte-compile-save-excursion)
(byte-compile-defvar, byte-compile-autoload)
(byte-compile-lambda-form)
(byte-compile-make-variable-buffer-local, display-call-tree)
(batch-byte-compile):
* lisp/emacs-lisp/cconv.el (cconv-convert, cconv--analyze-use):
* lisp/emacs-lisp/chart.el (chart-space-usage):
* lisp/emacs-lisp/check-declare.el (check-declare-scan)
(check-declare-warn, check-declare-file)
(check-declare-directory):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine)
(checkdoc-message-text-engine):
* lisp/emacs-lisp/cl-extra.el (cl-parse-integer)
(cl--describe-class):
* lisp/emacs-lisp/cl-generic.el (cl-defgeneric)
(cl--generic-describe, cl-generic-generalizers):
* lisp/emacs-lisp/cl-macs.el (cl--parse-loop-clause, cl-tagbody)
(cl-symbol-macrolet):
* lisp/emacs-lisp/cl.el (cl-unload-function, flet):
* lisp/emacs-lisp/copyright.el (copyright)
(copyright-update-directory):
* lisp/emacs-lisp/edebug.el (edebug-read-list):
* lisp/emacs-lisp/eieio-base.el (eieio-persistent-read):
* lisp/emacs-lisp/eieio-core.el (eieio--slot-override)
(eieio-oref):
* lisp/emacs-lisp/eieio-opt.el (eieio-help-constructor):
* lisp/emacs-lisp/eieio-speedbar.el:
(eieio-speedbar-child-make-tag-lines)
(eieio-speedbar-child-description):
* lisp/emacs-lisp/eieio.el (defclass, change-class):
* lisp/emacs-lisp/elint.el (elint-file, elint-get-top-forms)
(elint-init-form, elint-check-defalias-form)
(elint-check-let-form):
* lisp/emacs-lisp/ert.el (ert-get-test, ert-results-mode-menu)
(ert-results-pop-to-backtrace-for-test-at-point)
(ert-results-pop-to-messages-for-test-at-point)
(ert-results-pop-to-should-forms-for-test-at-point)
(ert-describe-test):
* lisp/emacs-lisp/find-func.el (find-function-search-for-symbol)
(find-function-library):
* lisp/emacs-lisp/generator.el (iter-yield):
* lisp/emacs-lisp/gv.el (gv-define-simple-setter):
* lisp/emacs-lisp/lisp-mnt.el (lm-verify):
* lisp/emacs-lisp/macroexp.el (macroexp--obsolete-warning):
* lisp/emacs-lisp/map-ynp.el (map-y-or-n-p):
* lisp/emacs-lisp/nadvice.el (advice--make-docstring)
(advice--make, define-advice):
* lisp/emacs-lisp/package-x.el (package-upload-file):
* lisp/emacs-lisp/package.el (package-version-join)
(package-disabled-p, package-activate-1, package-activate)
(package--download-one-archive)
(package--download-and-read-archives)
(package-compute-transaction, package-install-from-archive)
(package-install, package-install-selected-packages)
(package-delete, package-autoremove, describe-package-1)
(package-install-button-action, package-delete-button-action)
(package-menu-hide-package, package-menu--list-to-prompt)
(package-menu--perform-transaction)
(package-menu--find-and-notify-upgrades):
* lisp/emacs-lisp/pcase.el (pcase-exhaustive, pcase--u1):
* lisp/emacs-lisp/re-builder.el (reb-enter-subexp-mode):
* lisp/emacs-lisp/ring.el (ring-previous, ring-next):
* lisp/emacs-lisp/rx.el (rx-check, rx-anything)
(rx-check-any-string, rx-check-any, rx-check-not, rx-=)
(rx-repeat, rx-check-backref, rx-syntax, rx-check-category)
(rx-form):
* lisp/emacs-lisp/smie.el (smie-config-save):
* lisp/emacs-lisp/subr-x.el (internal--check-binding):
* lisp/emacs-lisp/tabulated-list.el (tabulated-list-put-tag):
* lisp/emacs-lisp/testcover.el (testcover-1value):
* lisp/emacs-lisp/timer.el (timer-event-handler):
* lisp/emulation/viper-cmd.el (viper-toggle-parse-sexp-ignore-comments)
(viper-toggle-search-style, viper-kill-buffer)
(viper-brac-function):
* lisp/emulation/viper-macs.el (viper-record-kbd-macro):
* lisp/env.el (setenv):
* lisp/erc/erc-button.el (erc-nick-popup):
* lisp/erc/erc.el (erc-cmd-LOAD, erc-handle-login, english):
* lisp/eshell/em-dirs.el (eshell/cd):
* lisp/eshell/em-glob.el (eshell-glob-regexp)
(eshell-glob-entries):
* lisp/eshell/em-pred.el (eshell-parse-modifiers):
* lisp/eshell/esh-opt.el (eshell-show-usage):
* lisp/facemenu.el (facemenu-add-new-face)
(facemenu-add-new-color):
* lisp/faces.el (read-face-name, read-face-font, describe-face)
(x-resolve-font-name):
* lisp/files-x.el (modify-file-local-variable):
* lisp/files.el (locate-user-emacs-file, find-alternate-file)
(set-auto-mode, hack-one-local-variable--obsolete)
(dir-locals-set-directory-class, write-file, basic-save-buffer)
(delete-directory, copy-directory, recover-session)
(recover-session-finish, insert-directory)
(file-modes-char-to-who, file-modes-symbolic-to-number)
(move-file-to-trash):
* lisp/filesets.el (filesets-add-buffer, filesets-remove-buffer):
* lisp/find-cmd.el (find-generic, find-to-string):
* lisp/finder.el (finder-commentary):
* lisp/font-lock.el (font-lock-fontify-buffer):
* lisp/format.el (format-write-file, format-find-file)
(format-insert-file):
* lisp/frame.el (get-device-terminal, select-frame-by-name):
* lisp/fringe.el (fringe--check-style):
* lisp/gnus/nnmairix.el (nnmairix-widget-create-query):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--parent-mode)
(help-fns--obsolete, help-fns--interactive-only)
(describe-function-1, describe-variable):
* lisp/help.el (describe-mode)
(describe-minor-mode-from-indicator):
* lisp/image.el (image-type):
* lisp/international/ccl.el (ccl-dump):
* lisp/international/fontset.el (x-must-resolve-font-name):
* lisp/international/mule-cmds.el (prefer-coding-system)
(select-safe-coding-system-interactively)
(select-safe-coding-system, activate-input-method)
(toggle-input-method, describe-current-input-method)
(describe-language-environment):
* lisp/international/mule-conf.el (code-offset):
* lisp/international/mule-diag.el (describe-character-set)
(list-input-methods-1):
* lisp/mail/feedmail.el (feedmail-run-the-queue):
* lisp/mouse.el (minor-mode-menu-from-indicator):
* lisp/mpc.el (mpc-playlist-rename):
* lisp/msb.el (msb--choose-menu):
* lisp/net/ange-ftp.el (ange-ftp-shell-command):
* lisp/net/imap.el (imap-interactive-login):
* lisp/net/mairix.el (mairix-widget-create-query):
* lisp/net/newst-backend.el (newsticker--sentinel-work):
* lisp/net/newst-treeview.el (newsticker--treeview-load):
* lisp/net/rlogin.el (rlogin):
* lisp/obsolete/iswitchb.el (iswitchb-possible-new-buffer):
* lisp/obsolete/otodo-mode.el (todo-more-important-p):
* lisp/obsolete/pgg-gpg.el (pgg-gpg-process-region):
* lisp/obsolete/pgg-pgp.el (pgg-pgp-process-region):
* lisp/obsolete/pgg-pgp5.el (pgg-pgp5-process-region):
* lisp/org/ob-core.el (org-babel-goto-named-src-block)
(org-babel-goto-named-result):
* lisp/org/ob-fortran.el (org-babel-fortran-ensure-main-wrap):
* lisp/org/ob-ref.el (org-babel-ref-resolve):
* lisp/org/org-agenda.el (org-agenda-prepare):
* lisp/org/org-clock.el (org-clock-notify-once-if-expired)
(org-clock-resolve):
* lisp/org/org-ctags.el (org-ctags-ask-rebuild-tags-file-then-find-tag):
* lisp/org/org-feed.el (org-feed-parse-atom-entry):
* lisp/org/org-habit.el (org-habit-parse-todo):
* lisp/org/org-mouse.el (org-mouse-popup-global-menu)
(org-mouse-context-menu):
* lisp/org/org-table.el (org-table-edit-formulas):
* lisp/org/ox.el (org-export-async-start):
* lisp/proced.el (proced-log):
* lisp/progmodes/ada-mode.el (ada-get-indent-case)
(ada-check-matching-start, ada-goto-matching-start):
* lisp/progmodes/ada-prj.el (ada-prj-display-page):
* lisp/progmodes/ada-xref.el (ada-find-executable):
* lisp/progmodes/ebrowse.el (ebrowse-tags-apropos):
* lisp/progmodes/etags.el (etags-tags-apropos-additional):
* lisp/progmodes/flymake.el (flymake-parse-err-lines)
(flymake-start-syntax-check-process):
* lisp/progmodes/python.el (python-shell-get-process-or-error)
(python-define-auxiliary-skeleton):
* lisp/progmodes/sql.el (sql-comint):
* lisp/progmodes/verilog-mode.el (verilog-load-file-at-point):
* lisp/progmodes/vhdl-mode.el (vhdl-widget-directory-validate):
* lisp/recentf.el (recentf-open-files):
* lisp/replace.el (query-replace-read-from)
(occur-after-change-function, occur-1):
* lisp/scroll-bar.el (scroll-bar-columns):
* lisp/server.el (server-get-auth-key):
* lisp/simple.el (execute-extended-command)
(undo-outer-limit-truncate, list-processes--refresh)
(compose-mail, set-variable, choose-completion-string)
(define-alternatives):
* lisp/startup.el (site-run-file, tty-handle-args, command-line)
(command-line-1):
* lisp/subr.el (noreturn, define-error, add-to-list)
(read-char-choice, version-to-list):
* lisp/term/common-win.el (x-handle-xrm-switch)
(x-handle-name-switch, x-handle-args):
* lisp/term/x-win.el (x-handle-parent-id, x-handle-smid):
* lisp/textmodes/reftex-ref.el (reftex-label):
* lisp/textmodes/reftex-toc.el (reftex-toc-rename-label):
* lisp/textmodes/two-column.el (2C-split):
* lisp/tutorial.el (tutorial--describe-nonstandard-key)
(tutorial--find-changed-keys):
* lisp/type-break.el (type-break-noninteractive-query):
* lisp/wdired.el (wdired-do-renames, wdired-do-symlink-changes)
(wdired-do-perm-changes):
* lisp/whitespace.el (whitespace-report-region):
Prefer grave quoting in source-code strings used to generate help
and diagnostics.
* lisp/faces.el (face-documentation):
No need to convert quotes, since the result is a docstring.
* lisp/info.el (Info-virtual-index-find-node)
(Info-virtual-index, info-apropos):
Simplify by generating only curved quotes, since info files are
typically that ways nowadays anyway.
* lisp/international/mule-diag.el (list-input-methods):
Don’t assume text quoting style is curved.
* lisp/org/org-bibtex.el (org-bibtex-fields):
Revert my recent changes, going back to the old quoting style.
2015-09-07 15:41:44 +00:00
|
|
|
(message "Argtype error in `appt-disp-window-function' - \
|
2011-06-09 05:08:11 +00:00
|
|
|
update it for multiple appts?")
|
|
|
|
;; Fallback to just displaying the first appt, as we used to.
|
|
|
|
(funcall appt-disp-window-function
|
|
|
|
(number-to-string (car mins)) time
|
|
|
|
(car string))))))
|
2010-09-30 02:15:17 +00:00
|
|
|
(run-at-time (format "%d sec" appt-display-duration)
|
|
|
|
nil
|
|
|
|
appt-delete-window-function))
|
|
|
|
((eq appt-display-format 'echo)
|
2011-06-09 05:08:11 +00:00
|
|
|
(message "%s" (if (listp string)
|
2018-01-10 16:45:33 +00:00
|
|
|
(mapconcat #'identity string "\n")
|
2011-06-09 05:08:11 +00:00
|
|
|
string)))))
|
2004-01-11 22:24:57 +00:00
|
|
|
|
2011-06-09 20:25:34 +00:00
|
|
|
(defun appt-mode-line (min-to-app &optional abbrev)
|
|
|
|
"Return an appointment string suitable for use in the mode-line.
|
|
|
|
MIN-TO-APP is a list of minutes, as strings.
|
|
|
|
If ABBREV is non-nil, abbreviates some text."
|
|
|
|
;; All this silliness is just to make the formatting slightly nicer.
|
|
|
|
(let* ((multiple (> (length min-to-app) 1))
|
2011-06-09 20:36:04 +00:00
|
|
|
(imin (if (or (not multiple)
|
|
|
|
(not (delete (car min-to-app) min-to-app)))
|
|
|
|
(car min-to-app))))
|
2011-06-09 20:25:34 +00:00
|
|
|
(format "%s%s %s"
|
|
|
|
(if abbrev "App't" "Appointment")
|
|
|
|
(if multiple "s" "")
|
|
|
|
(if (equal imin "0") "now"
|
|
|
|
(format "in %s %s"
|
2018-01-10 16:45:33 +00:00
|
|
|
(or imin (mapconcat #'identity min-to-app ","))
|
2011-06-09 20:25:34 +00:00
|
|
|
(if abbrev "min."
|
|
|
|
(format "minute%s" (if (equal imin "1") "" "s"))))))))
|
2004-01-11 22:24:57 +00:00
|
|
|
|
|
|
|
(defun appt-check (&optional force)
|
|
|
|
"Check for an appointment and update any reminder display.
|
|
|
|
If optional argument FORCE is non-nil, reparse the diary file for
|
|
|
|
appointments. Otherwise the diary file is only parsed once per day,
|
2010-09-14 07:21:03 +00:00
|
|
|
or when it (or a file it includes) is saved.
|
1991-01-30 21:30:11 +00:00
|
|
|
|
2004-01-11 22:24:57 +00:00
|
|
|
Note: the time must be the first thing in the line in the diary
|
|
|
|
for a warning to be issued. The format of the time can be either
|
|
|
|
24 hour or am/pm. For example:
|
1991-01-30 21:30:11 +00:00
|
|
|
|
2004-01-11 22:24:57 +00:00
|
|
|
02/23/89
|
|
|
|
18:00 Dinner
|
2003-02-04 13:24:35 +00:00
|
|
|
|
1991-01-30 21:30:11 +00:00
|
|
|
Thursday
|
|
|
|
11:45am Lunch meeting.
|
|
|
|
|
1998-09-21 19:45:14 +00:00
|
|
|
Appointments are checked every `appt-display-interval' minutes.
|
|
|
|
The following variables control appointment notification:
|
1991-01-30 21:30:11 +00:00
|
|
|
|
2004-01-11 22:24:57 +00:00
|
|
|
`appt-display-format'
|
|
|
|
Controls the format in which reminders are displayed.
|
1991-01-30 21:30:11 +00:00
|
|
|
|
1998-08-26 21:14:25 +00:00
|
|
|
`appt-audible'
|
2011-05-17 02:36:51 +00:00
|
|
|
Non-nil means there is an audible component to reminders.
|
1991-01-30 21:30:11 +00:00
|
|
|
|
2004-01-11 22:24:57 +00:00
|
|
|
`appt-message-warning-time'
|
2011-05-17 02:36:51 +00:00
|
|
|
The default number of minutes in advance at which reminders
|
|
|
|
should start.
|
2004-01-11 22:24:57 +00:00
|
|
|
|
|
|
|
`appt-display-mode-line'
|
2011-05-17 02:36:51 +00:00
|
|
|
Non-nil means show in the mode line a countdown to the
|
|
|
|
time of each appointment, once reminders start.
|
2004-01-11 22:24:57 +00:00
|
|
|
|
|
|
|
`appt-display-interval'
|
2011-05-17 02:36:51 +00:00
|
|
|
Interval in minutes at which to display appointment messages.
|
1991-01-30 21:30:11 +00:00
|
|
|
|
2004-01-11 22:24:57 +00:00
|
|
|
`appt-display-diary'
|
2011-05-17 02:36:51 +00:00
|
|
|
Non-nil means display the diary whenever the appointment list is
|
|
|
|
initialized (e.g. the first time we check for appointments each day).
|
2004-01-11 22:24:57 +00:00
|
|
|
|
|
|
|
The following variables are only relevant if reminders are being
|
|
|
|
displayed in a window:
|
1991-01-30 21:30:11 +00:00
|
|
|
|
1998-08-26 21:14:25 +00:00
|
|
|
`appt-display-duration'
|
2011-05-17 02:36:51 +00:00
|
|
|
Number of seconds for which an appointment message is displayed.
|
1993-11-16 03:30:08 +00:00
|
|
|
|
1998-09-21 19:45:14 +00:00
|
|
|
`appt-disp-window-function'
|
2008-04-02 03:52:36 +00:00
|
|
|
Function called to display appointment window.
|
2003-02-04 13:24:35 +00:00
|
|
|
|
1998-09-21 19:45:14 +00:00
|
|
|
`appt-delete-window-function'
|
2008-04-02 03:52:36 +00:00
|
|
|
Function called to remove appointment window and buffer."
|
2008-04-02 03:50:34 +00:00
|
|
|
(interactive "P") ; so people can force updates
|
2011-06-11 17:54:53 +00:00
|
|
|
(let* ((prev-appt-mode-string appt-mode-string)
|
2011-05-17 02:36:51 +00:00
|
|
|
(prev-appt-display-count appt-display-count)
|
2011-06-08 06:57:38 +00:00
|
|
|
;; Convert current time to minutes after midnight (12.01am = 1).
|
|
|
|
(now (decode-time))
|
2019-07-30 11:07:17 +00:00
|
|
|
(now-mins (+ (* 60 (decoded-time-hour now)) (decoded-time-minute now)))
|
2011-06-11 17:54:53 +00:00
|
|
|
appt-mins appt-warn-time min-to-app min-list string-list)
|
2011-05-12 07:56:02 +00:00
|
|
|
(save-excursion ; FIXME ?
|
|
|
|
;; At first check in any day, update appointments to today's list.
|
|
|
|
(if (or force ; eg initialize, diary save
|
|
|
|
(null appt-prev-comp-time) ; first check
|
2011-05-14 19:13:40 +00:00
|
|
|
(< now-mins appt-prev-comp-time)) ; new day
|
2011-05-12 07:56:02 +00:00
|
|
|
(ignore-errors
|
2018-01-10 16:45:33 +00:00
|
|
|
(let ((diary-hook (if (memq #'appt-make-list diary-hook)
|
2011-05-12 07:56:02 +00:00
|
|
|
diary-hook
|
2018-01-10 16:45:33 +00:00
|
|
|
(cons #'appt-make-list diary-hook))))
|
2011-05-12 07:56:02 +00:00
|
|
|
(if appt-display-diary
|
|
|
|
(diary)
|
|
|
|
;; Not displaying the diary, so we can ignore
|
|
|
|
;; diary-number-of-entries. Since appt.el only
|
|
|
|
;; works on a daily basis, no need for more entries.
|
|
|
|
(diary-list-entries (calendar-current-date) 1 t)))))
|
2011-05-17 02:36:51 +00:00
|
|
|
;; Reset everything now in case we somehow missed a minute,
|
|
|
|
;; or (more likely) an appt was deleted. (This is the only
|
|
|
|
;; reason we need prev-appt-display-count.)
|
2011-05-14 19:13:40 +00:00
|
|
|
(setq appt-prev-comp-time now-mins
|
2011-05-12 07:56:02 +00:00
|
|
|
appt-mode-string nil
|
2011-05-17 02:36:51 +00:00
|
|
|
appt-display-count 0)
|
2011-06-11 17:54:53 +00:00
|
|
|
;; If there are entries in the list get each time off of the
|
|
|
|
;; list and calculate the number of minutes until the appointment.
|
|
|
|
;; TODO we are looping over all the appointments each time.
|
|
|
|
;; We could instead sort them by the time at which we need to
|
|
|
|
;; start warning. But then removing entries in the past becomes
|
|
|
|
;; less straightforward.
|
|
|
|
(dolist (appt appt-time-msg-list)
|
|
|
|
;; Remove any entries that are in the past.
|
|
|
|
;; FIXME how can there be any such entries, given that this
|
|
|
|
;; function removes entries when they hit zero minutes,
|
|
|
|
;; and appt-make-list doesn't add any in the past in the first place?
|
|
|
|
(if (< (setq appt-mins (caar appt)) now-mins)
|
|
|
|
(setq appt-time-msg-list (cdr appt-time-msg-list))
|
|
|
|
(setq appt-warn-time (or (nth 3 appt) appt-message-warning-time)
|
|
|
|
min-to-app (- appt-mins now-mins))
|
|
|
|
;; If we have an appointment between midnight and
|
|
|
|
;; `appt-warn-time' minutes after midnight, we
|
|
|
|
;; must begin to issue a message before midnight. Midnight
|
|
|
|
;; is considered 0 minutes and 11:59pm is 1439
|
|
|
|
;; minutes. Therefore we must recalculate the minutes to
|
|
|
|
;; appointment variable. It is equal to the number of
|
|
|
|
;; minutes before midnight plus the number of minutes after
|
|
|
|
;; midnight our appointment is.
|
|
|
|
;; FIXME but appt-make-list constructs appt-time-msg-list to only
|
|
|
|
;; contain entries with today's date, so this cannot work?
|
|
|
|
;; Also above we just removed anything with appt-mins < now-mins.
|
|
|
|
(if (and (< appt-mins appt-warn-time)
|
|
|
|
(> (+ now-mins appt-warn-time) appt-max-time))
|
|
|
|
(setq min-to-app (+ (- (1+ appt-max-time) now-mins)
|
|
|
|
appt-mins)))
|
|
|
|
;; Issue warning if the appointment time is within the warning time.
|
|
|
|
(when (and (<= min-to-app appt-warn-time)
|
|
|
|
(>= min-to-app 0))
|
|
|
|
(push min-to-app min-list)
|
|
|
|
(push (cadr appt) string-list)
|
|
|
|
;; When an appointment is reached, delete it from the list.
|
|
|
|
(if (zerop min-to-app)
|
|
|
|
(setq appt-time-msg-list (delete appt appt-time-msg-list))))))
|
|
|
|
(when min-list
|
|
|
|
(setq min-list (nreverse min-list)
|
|
|
|
string-list (nreverse string-list))
|
|
|
|
;; This is true every appt-display-interval minutes from the
|
|
|
|
;; time at which we first started reminding.
|
|
|
|
;; TODO in the case of multiple appointments, whose interval
|
|
|
|
;; should we respect? The first one that we started warning about?
|
|
|
|
;; That's what we do now, and this makes sense if you interpret
|
|
|
|
;; a-d-i as "don't remind me any more frequently than this".
|
|
|
|
;; But should we always show a message when a new appt becomes due?
|
|
|
|
;; When one appt gets removed, should we switch to the interval
|
|
|
|
;; of the next?
|
|
|
|
(and (zerop (mod prev-appt-display-count appt-display-interval))
|
|
|
|
(appt-display-message string-list min-list))
|
|
|
|
(when appt-display-mode-line
|
|
|
|
(setq appt-mode-string
|
2021-08-19 15:48:14 +00:00
|
|
|
(concat (propertize
|
|
|
|
(appt-mode-line (mapcar #'number-to-string
|
|
|
|
min-list)
|
|
|
|
t)
|
2023-02-20 19:03:08 +00:00
|
|
|
'face 'appt-notification)
|
2021-08-19 15:48:14 +00:00
|
|
|
" ")))
|
2011-06-11 17:54:53 +00:00
|
|
|
;; Reset count to 0 in case we display another appt on the next cycle.
|
2023-01-23 13:42:11 +00:00
|
|
|
(setq appt-display-count (if (equal '(0) min-list) 0
|
2011-06-11 17:54:53 +00:00
|
|
|
(1+ prev-appt-display-count))))
|
2011-05-12 07:56:02 +00:00
|
|
|
;; If we have changed the mode line string, redisplay all mode lines.
|
|
|
|
(and appt-display-mode-line
|
2011-05-14 19:13:40 +00:00
|
|
|
(not (string-equal appt-mode-string prev-appt-mode-string))
|
2011-05-12 07:56:02 +00:00
|
|
|
(progn
|
|
|
|
(force-mode-line-update t)
|
|
|
|
;; If the string now has a notification, redisplay right now.
|
|
|
|
(if appt-mode-string
|
|
|
|
(sit-for 0)))))))
|
1991-01-30 21:30:11 +00:00
|
|
|
|
|
|
|
(defun appt-disp-window (min-to-app new-time appt-msg)
|
2008-03-08 21:21:57 +00:00
|
|
|
"Display appointment due in MIN-TO-APP (a string) minutes.
|
2011-06-09 05:08:11 +00:00
|
|
|
NEW-TIME is a string giving the current date.
|
|
|
|
Displays the appointment message APPT-MSG in a separate buffer.
|
|
|
|
The arguments may also be lists, where each element relates to a
|
|
|
|
separate appointment."
|
2004-01-11 22:24:57 +00:00
|
|
|
(let ((this-window (selected-window))
|
2008-11-24 09:51:26 +00:00
|
|
|
(appt-disp-buf (get-buffer-create appt-buffer-name)))
|
|
|
|
;; Make sure we're not in the minibuffer before splitting the window.
|
|
|
|
;; FIXME this seems needlessly complicated?
|
|
|
|
(when (minibufferp)
|
|
|
|
(other-window 1)
|
|
|
|
(and (minibufferp) (display-multi-frame-p) (other-frame 1)))
|
1994-10-09 09:19:16 +00:00
|
|
|
(if (cdr (assq 'unsplittable (frame-parameters)))
|
2008-04-02 03:52:36 +00:00
|
|
|
;; In an unsplittable frame, use something somewhere else.
|
2008-11-24 19:53:33 +00:00
|
|
|
(progn
|
|
|
|
(set-buffer appt-disp-buf)
|
|
|
|
(display-buffer appt-disp-buf))
|
1998-11-29 00:32:50 +00:00
|
|
|
(unless (or (special-display-p (buffer-name appt-disp-buf))
|
2008-04-02 03:52:36 +00:00
|
|
|
(same-window-p (buffer-name appt-disp-buf)))
|
|
|
|
;; By default, split the bottom window and use the lower part.
|
|
|
|
(appt-select-lowest-window)
|
2007-04-14 02:36:58 +00:00
|
|
|
;; Split the window, unless it's too small to do so.
|
|
|
|
(when (>= (window-height) (* 2 window-min-height))
|
|
|
|
(select-window (split-window))))
|
2004-05-13 00:18:15 +00:00
|
|
|
(switch-to-buffer appt-disp-buf))
|
2011-06-09 05:08:11 +00:00
|
|
|
(or (listp min-to-app)
|
|
|
|
(setq min-to-app (list min-to-app)
|
|
|
|
appt-msg (list appt-msg)))
|
|
|
|
;; I don't really see the point of the new-time argument.
|
|
|
|
;; It repeatedly reminds you of the date?
|
|
|
|
;; It would make more sense if it was eg the time of the appointment.
|
|
|
|
;; Let's allow it to be a list or not independent of the other elements.
|
2023-08-27 19:45:30 +00:00
|
|
|
(setq new-time (ensure-list new-time))
|
2011-06-09 20:25:34 +00:00
|
|
|
;; FIXME Link to diary entry?
|
|
|
|
(calendar-set-mode-line
|
|
|
|
(format " %s. %s" (appt-mode-line min-to-app)
|
2018-01-10 16:45:33 +00:00
|
|
|
(mapconcat #'identity new-time ", ")))
|
2011-06-09 20:25:34 +00:00
|
|
|
(setq buffer-read-only nil
|
|
|
|
buffer-undo-list t)
|
|
|
|
(erase-buffer)
|
|
|
|
;; If we have appointments at different times, prepend the times.
|
|
|
|
(if (or (= 1 (length min-to-app))
|
|
|
|
(not (delete (car min-to-app) min-to-app)))
|
2018-01-10 16:45:33 +00:00
|
|
|
(insert (mapconcat #'identity appt-msg "\n"))
|
2011-06-09 20:25:34 +00:00
|
|
|
(dotimes (i (length appt-msg))
|
|
|
|
(insert (format "%s%sm: %s" (if (> i 0) "\n" "")
|
|
|
|
(nth i min-to-app) (nth i appt-msg)))))
|
1994-10-09 09:19:16 +00:00
|
|
|
(shrink-window-if-larger-than-buffer (get-buffer-window appt-disp-buf t))
|
1994-01-21 21:21:20 +00:00
|
|
|
(set-buffer-modified-p nil)
|
2008-04-02 03:50:34 +00:00
|
|
|
(setq buffer-read-only t)
|
2013-08-05 10:35:55 +00:00
|
|
|
(raise-frame)
|
2004-01-11 22:24:57 +00:00
|
|
|
(select-window this-window)))
|
2003-02-04 13:24:35 +00:00
|
|
|
|
1994-01-21 21:21:20 +00:00
|
|
|
(defun appt-delete-window ()
|
|
|
|
"Function called to undisplay appointment messages.
|
|
|
|
Usually just deletes the appointment buffer."
|
1994-10-16 01:42:08 +00:00
|
|
|
(let ((window (get-buffer-window appt-buffer-name t)))
|
|
|
|
(and window
|
2008-04-02 03:52:36 +00:00
|
|
|
(or (eq window (frame-root-window (window-frame window)))
|
|
|
|
(delete-window window))))
|
2016-02-22 13:43:23 +00:00
|
|
|
(let ((buffer (get-buffer appt-buffer-name)))
|
|
|
|
(when buffer
|
|
|
|
(kill-buffer buffer)))
|
1994-01-21 21:21:20 +00:00
|
|
|
(if appt-audible
|
|
|
|
(beep 1)))
|
1991-01-30 21:30:11 +00:00
|
|
|
|
|
|
|
(defun appt-select-lowest-window ()
|
2008-04-02 03:52:36 +00:00
|
|
|
"Select the lowest window on the frame."
|
2000-07-03 09:12:39 +00:00
|
|
|
(let ((lowest-window (selected-window))
|
2008-04-02 03:52:36 +00:00
|
|
|
(bottom-edge (nth 3 (window-edges)))
|
2008-04-02 03:50:34 +00:00
|
|
|
next-bottom-edge)
|
2000-07-03 09:12:39 +00:00
|
|
|
(walk-windows (lambda (w)
|
2008-04-02 03:52:36 +00:00
|
|
|
(when (< bottom-edge (setq next-bottom-edge
|
|
|
|
(nth 3 (window-edges w))))
|
|
|
|
(setq bottom-edge next-bottom-edge
|
|
|
|
lowest-window w))) 'nomini)
|
2000-07-03 09:12:39 +00:00
|
|
|
(select-window lowest-window)))
|
1991-01-30 21:30:11 +00:00
|
|
|
|
2005-10-04 20:51:16 +00:00
|
|
|
(defconst appt-time-regexp
|
|
|
|
"[0-9]?[0-9]\\(h\\([0-9][0-9]\\)?\\|[:.][0-9][0-9]\\)\\(am\\|pm\\)?")
|
|
|
|
|
1998-09-21 19:45:14 +00:00
|
|
|
;;;###autoload
|
2010-06-15 03:42:33 +00:00
|
|
|
(defun appt-add (time msg &optional warntime)
|
|
|
|
"Add an appointment for today at TIME with message MSG.
|
|
|
|
The time should be in either 24 hour format or am/pm format.
|
|
|
|
Optional argument WARNTIME is an integer (or string) giving the number
|
|
|
|
of minutes before the appointment at which to start warning.
|
|
|
|
The default is `appt-message-warning-time'."
|
2022-03-01 14:24:08 +00:00
|
|
|
(interactive (list (let ((time (read-string "Time (hh:mm[am/pm]): ")))
|
|
|
|
(unless (string-match-p appt-time-regexp time)
|
|
|
|
(user-error "Unacceptable time-string"))
|
|
|
|
time)
|
|
|
|
(read-string "Message: ")
|
|
|
|
(read-string "Minutes before the appointment to start warning: ")))
|
|
|
|
(unless (string-match-p appt-time-regexp time)
|
2015-06-10 21:04:54 +00:00
|
|
|
(user-error "Unacceptable time-string"))
|
2010-06-15 03:42:33 +00:00
|
|
|
(and (stringp warntime)
|
|
|
|
(setq warntime (unless (string-equal warntime "")
|
|
|
|
(string-to-number warntime))))
|
|
|
|
(and warntime
|
|
|
|
(not (integerp warntime))
|
2015-06-10 21:04:54 +00:00
|
|
|
(user-error "Argument WARNTIME must be an integer, or nil"))
|
2010-10-04 01:19:56 +00:00
|
|
|
(or appt-timer (appt-activate))
|
2010-06-15 03:42:33 +00:00
|
|
|
(let ((time-msg (list (list (appt-convert-time time))
|
|
|
|
(concat time " " msg) t)))
|
2011-12-04 08:02:42 +00:00
|
|
|
;; It is presently nonsensical to have multiple warnings about
|
2010-06-15 03:42:33 +00:00
|
|
|
;; the same appointment with just different delays, but it might
|
|
|
|
;; not always be so. TODO
|
|
|
|
(if warntime (setq time-msg (append time-msg (list warntime))))
|
2006-04-15 16:35:44 +00:00
|
|
|
(unless (member time-msg appt-time-msg-list)
|
|
|
|
(setq appt-time-msg-list
|
|
|
|
(appt-sort-list (nconc appt-time-msg-list (list time-msg)))))))
|
1991-01-30 21:30:11 +00:00
|
|
|
|
|
|
|
(defun appt-delete ()
|
|
|
|
"Delete an appointment from the list of appointments."
|
|
|
|
(interactive)
|
2004-01-11 22:24:57 +00:00
|
|
|
(let ((tmp-msg-list appt-time-msg-list))
|
2008-04-02 03:50:34 +00:00
|
|
|
(dolist (element tmp-msg-list)
|
|
|
|
(if (y-or-n-p (concat "Delete "
|
|
|
|
;; We want to quote any doublequotes in the
|
|
|
|
;; string, as well as put doublequotes around it.
|
|
|
|
(prin1-to-string
|
|
|
|
(substring-no-properties (cadr element) 0))
|
|
|
|
" from list? "))
|
|
|
|
(setq appt-time-msg-list (delq element appt-time-msg-list)))))
|
|
|
|
(appt-check)
|
|
|
|
(message ""))
|
2003-02-04 13:24:35 +00:00
|
|
|
|
1991-01-30 21:30:11 +00:00
|
|
|
|
2007-07-27 20:00:05 +00:00
|
|
|
(defvar diary-entries-list)
|
2010-09-30 02:15:17 +00:00
|
|
|
|
1991-01-30 21:30:11 +00:00
|
|
|
(defun appt-make-list ()
|
2005-02-23 21:05:51 +00:00
|
|
|
"Update the appointments list from today's diary buffer.
|
2000-03-29 21:47:07 +00:00
|
|
|
The time must be at the beginning of a line for it to be
|
2004-01-11 22:24:57 +00:00
|
|
|
put in the appointments list (see examples in documentation of
|
2018-01-10 16:45:33 +00:00
|
|
|
the function `appt-check'). We assume that the variables `original-date' and
|
|
|
|
`number' hold the arguments that `diary-list-entries' received.
|
2005-02-23 21:05:51 +00:00
|
|
|
They specify the range of dates that the diary is being processed for.
|
|
|
|
|
2010-09-30 02:15:17 +00:00
|
|
|
Any appointments made with `appt-add' are not affected by this function."
|
2018-01-10 16:45:33 +00:00
|
|
|
(with-no-warnings (defvar number) (defvar original-date))
|
2010-09-30 02:15:17 +00:00
|
|
|
;; We have something to do if the range of dates that the diary is
|
|
|
|
;; considering includes the current date.
|
|
|
|
(if (and (not (calendar-date-compare
|
|
|
|
(list (calendar-current-date))
|
|
|
|
(list original-date)))
|
|
|
|
(calendar-date-compare
|
|
|
|
(list (calendar-current-date))
|
|
|
|
(list (calendar-gregorian-from-absolute
|
|
|
|
(+ (calendar-absolute-from-gregorian original-date)
|
|
|
|
number)))))
|
|
|
|
(save-excursion
|
|
|
|
;; Clear the appointments list, then fill it in from the diary.
|
|
|
|
(dolist (elt appt-time-msg-list)
|
|
|
|
;; Delete any entries that were not made with appt-add.
|
|
|
|
(unless (nth 2 elt)
|
|
|
|
(setq appt-time-msg-list
|
|
|
|
(delq elt appt-time-msg-list))))
|
|
|
|
(if diary-entries-list
|
|
|
|
;; Cycle through the entry-list (diary-entries-list)
|
|
|
|
;; looking for entries beginning with a time. If the
|
|
|
|
;; entry begins with a time, add it to the
|
|
|
|
;; appt-time-msg-list. Then sort the list.
|
|
|
|
(let ((entry-list diary-entries-list)
|
2011-05-06 07:14:30 +00:00
|
|
|
time-string literal)
|
2010-09-30 02:15:17 +00:00
|
|
|
;; Below, we assume diary-entries-list was in date
|
|
|
|
;; order. It is, unless something on
|
|
|
|
;; diary-list-entries-hook has changed it, eg
|
|
|
|
;; diary-include-other-files (bug#7019). It must be
|
|
|
|
;; in date order if number = 1.
|
|
|
|
(and diary-list-entries-hook
|
|
|
|
appt-display-diary
|
|
|
|
(not (eq diary-number-of-entries 1))
|
|
|
|
(not (memq (car (last diary-list-entries-hook))
|
|
|
|
'(diary-sort-entries sort-diary-entries)))
|
|
|
|
(setq entry-list (sort entry-list 'diary-entry-compare)))
|
|
|
|
;; Skip diary entries for dates before today.
|
|
|
|
(while (and entry-list
|
|
|
|
(calendar-date-compare
|
|
|
|
(car entry-list) (list (calendar-current-date))))
|
|
|
|
(setq entry-list (cdr entry-list)))
|
|
|
|
;; Parse the entries for today.
|
|
|
|
(while (and entry-list
|
|
|
|
(calendar-date-equal
|
|
|
|
(calendar-current-date) (caar entry-list)))
|
2011-05-06 07:14:30 +00:00
|
|
|
(setq time-string (cadr (car entry-list))
|
|
|
|
;; Including any comments.
|
|
|
|
literal (or (nth 2 (nth 3 (car entry-list)))
|
|
|
|
time-string))
|
2010-09-30 02:15:17 +00:00
|
|
|
(while (string-match appt-time-regexp time-string)
|
|
|
|
(let* ((beg (match-beginning 0))
|
|
|
|
;; Get just the time for this appointment.
|
|
|
|
(only-time (match-string 0 time-string))
|
|
|
|
;; Find the end of this appointment
|
|
|
|
;; (the start of the next).
|
|
|
|
(end (string-match
|
|
|
|
(concat "\n[ \t]*" appt-time-regexp)
|
|
|
|
time-string
|
|
|
|
(match-end 0)))
|
2011-05-06 07:14:30 +00:00
|
|
|
(warntime
|
|
|
|
(if (string-match appt-warning-time-regexp literal)
|
|
|
|
(string-to-number (match-string 1 literal))))
|
2010-09-30 02:15:17 +00:00
|
|
|
;; Get the whole string for this appointment.
|
|
|
|
(appt-time-string
|
|
|
|
(substring time-string beg end))
|
2011-05-13 01:35:11 +00:00
|
|
|
;; FIXME why the list? It makes the first
|
|
|
|
;; element (MINUTES) rather than MINUTES.
|
2010-09-30 02:15:17 +00:00
|
|
|
(appt-time (list (appt-convert-time only-time)))
|
2011-05-06 07:14:30 +00:00
|
|
|
(time-msg (append
|
|
|
|
(list appt-time appt-time-string)
|
|
|
|
(if warntime (list nil warntime)))))
|
2010-09-30 02:15:17 +00:00
|
|
|
;; Add this appointment to appt-time-msg-list.
|
|
|
|
(setq appt-time-msg-list
|
|
|
|
(nconc appt-time-msg-list (list time-msg))
|
|
|
|
;; Discard this appointment from the string.
|
2011-05-06 07:14:30 +00:00
|
|
|
;; (This allows for multiple appts per entry.)
|
2010-09-30 02:15:17 +00:00
|
|
|
time-string
|
2011-05-06 07:14:30 +00:00
|
|
|
(if end (substring time-string end) ""))
|
|
|
|
;; Similarly, discard the start of literal.
|
|
|
|
(and (> (length time-string) 0)
|
|
|
|
(string-match appt-time-regexp literal)
|
|
|
|
(setq end (string-match
|
|
|
|
(concat "\n[ \t]*" appt-time-regexp)
|
|
|
|
literal (match-end 0)))
|
|
|
|
(setq literal (substring literal end)))))
|
2010-09-30 02:15:17 +00:00
|
|
|
(setq entry-list (cdr entry-list)))))
|
|
|
|
(setq appt-time-msg-list (appt-sort-list appt-time-msg-list))
|
|
|
|
;; Convert current time to minutes after midnight (12:01am = 1),
|
2011-05-13 01:31:53 +00:00
|
|
|
;; and remove elements in the list that are in the past.
|
2010-09-30 02:15:17 +00:00
|
|
|
(let* ((now (decode-time))
|
2019-07-30 11:07:17 +00:00
|
|
|
(now-mins (+ (* 60 (decoded-time-hour now))
|
|
|
|
(decoded-time-minute now))))
|
2011-05-13 01:31:53 +00:00
|
|
|
(while (and appt-time-msg-list
|
|
|
|
(< (caar (car appt-time-msg-list)) now-mins))
|
|
|
|
(setq appt-time-msg-list (cdr appt-time-msg-list)))))))
|
2003-02-04 13:24:35 +00:00
|
|
|
|
1991-01-30 21:30:11 +00:00
|
|
|
|
|
|
|
(defun appt-sort-list (appt-list)
|
2004-01-11 22:24:57 +00:00
|
|
|
"Sort an appointment list, putting earlier items at the front.
|
|
|
|
APPT-LIST is a list of the same format as `appt-time-msg-list'."
|
2007-07-27 20:00:05 +00:00
|
|
|
(sort appt-list (lambda (e1 e2) (< (caar e1) (caar e2)))))
|
1991-01-30 21:30:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
(defun appt-convert-time (time2conv)
|
2008-03-08 21:21:57 +00:00
|
|
|
"Convert hour:min[am/pm] format TIME2CONV to minutes from midnight.
|
2004-01-11 22:24:57 +00:00
|
|
|
A period (.) can be used instead of a colon (:) to separate the
|
|
|
|
hour and minute parts."
|
2005-10-04 20:51:16 +00:00
|
|
|
;; Formats that should be accepted:
|
|
|
|
;; 10:00 10.00 10h00 10h 10am 10:00am 10.00am
|
|
|
|
(let ((min (if (string-match "[h:.]\\([0-9][0-9]\\)" time2conv)
|
|
|
|
(string-to-number (match-string 1 time2conv))
|
|
|
|
0))
|
|
|
|
(hr (if (string-match "[0-9]*[0-9]" time2conv)
|
|
|
|
(string-to-number (match-string 0 time2conv))
|
|
|
|
0)))
|
2008-03-08 21:18:35 +00:00
|
|
|
;; Convert the time appointment time into 24 hour time.
|
1999-12-02 07:55:46 +00:00
|
|
|
(cond ((and (string-match "pm" time2conv) (< hr 12))
|
2008-04-02 03:52:36 +00:00
|
|
|
(setq hr (+ 12 hr)))
|
|
|
|
((and (string-match "am" time2conv) (= hr 12))
|
1999-12-02 07:55:46 +00:00
|
|
|
(setq hr 0)))
|
2008-03-08 21:18:35 +00:00
|
|
|
;; Convert the actual time into minutes.
|
2005-10-04 20:51:16 +00:00
|
|
|
(+ (* hr 60) min)))
|
1991-01-30 21:30:11 +00:00
|
|
|
|
2004-01-11 22:24:57 +00:00
|
|
|
(defun appt-update-list ()
|
|
|
|
"If the current buffer is visiting the diary, update appointments.
|
2010-09-14 07:15:06 +00:00
|
|
|
This function also acts on any file listed in `diary-included-files'.
|
|
|
|
It is intended for use with `write-file-functions'."
|
|
|
|
(and (member buffer-file-name (append diary-included-files
|
|
|
|
(list (expand-file-name diary-file))))
|
2004-01-11 22:24:57 +00:00
|
|
|
appt-timer
|
|
|
|
(let ((appt-display-diary nil))
|
|
|
|
(appt-check t)))
|
|
|
|
nil)
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun appt-activate (&optional arg)
|
2008-04-02 03:52:36 +00:00
|
|
|
"Toggle checking of appointments.
|
2004-01-11 22:24:57 +00:00
|
|
|
With optional numeric argument ARG, turn appointment checking on if
|
|
|
|
ARG is positive, otherwise off."
|
|
|
|
(interactive "P")
|
|
|
|
(let ((appt-active appt-timer))
|
|
|
|
(setq appt-active (if arg (> (prefix-numeric-value arg) 0)
|
|
|
|
(not appt-active)))
|
2021-03-14 15:35:55 +00:00
|
|
|
(remove-hook 'write-file-functions #'appt-update-list)
|
2004-01-11 22:24:57 +00:00
|
|
|
(or global-mode-string (setq global-mode-string '("")))
|
2023-05-18 15:33:15 +00:00
|
|
|
(setq global-mode-string (delq 'appt-mode-string global-mode-string))
|
2004-02-19 01:12:21 +00:00
|
|
|
(when appt-timer
|
|
|
|
(cancel-timer appt-timer)
|
|
|
|
(setq appt-timer nil))
|
2010-10-04 01:19:56 +00:00
|
|
|
(if appt-active
|
|
|
|
(progn
|
2021-03-14 15:35:55 +00:00
|
|
|
(add-hook 'write-file-functions #'appt-update-list)
|
2018-01-10 16:45:33 +00:00
|
|
|
(setq appt-timer (run-at-time t 60 #'appt-check)
|
2010-10-04 01:19:56 +00:00
|
|
|
global-mode-string
|
|
|
|
(append global-mode-string '(appt-mode-string)))
|
|
|
|
(appt-check t)
|
2010-10-07 02:26:30 +00:00
|
|
|
(message "Appointment reminders enabled%s"
|
|
|
|
;; Someone might want to use appt-add without a diary.
|
|
|
|
(if (ignore-errors (diary-check-diary-file))
|
|
|
|
""
|
|
|
|
" (no diary file found)")))
|
2010-10-04 01:19:56 +00:00
|
|
|
(message "Appointment reminders disabled"))))
|
2004-01-11 22:24:57 +00:00
|
|
|
|
1998-08-26 21:14:25 +00:00
|
|
|
|
2004-01-11 22:24:57 +00:00
|
|
|
(provide 'appt)
|
1994-01-21 21:21:20 +00:00
|
|
|
|
1998-08-26 21:14:25 +00:00
|
|
|
;;; appt.el ends here
|