• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/emacs-93/emacs/lisp/calendar/

Lines Matching defs:display

71 ;;; For instance, these variables could be set to functions that display
73 ;;; `appt-display-interval' minutes.
81 (defvar diary-selective-display)
93 variable `appt-display-format' instead." "22.1")
109 "*Non-nil means display appointment message in echo area.
114 (make-obsolete-variable 'appt-visible 'appt-display-format "22.1")
118 "*Non-nil means display appointment message in another window.
123 (make-obsolete-variable 'appt-msg-window 'appt-display-format "22.1")
126 (defcustom appt-display-format 'ignore
132 See also `appt-audible' and `appt-display-mode-line'.
139 (const :tag "No visible display" nil)
146 (defcustom appt-display-mode-line t
147 "*Non-nil means display minutes to appointment and time on the mode line.
148 This is in addition to any other display of appointment messages."
153 (defcustom appt-display-duration 10
160 (defcustom appt-display-diary t
166 (defcustom appt-display-interval 3
172 "Function called to display appointment window.
208 Only used if `appt-display-mode-line' is non-nil.")
217 (defvar appt-display-count nil
227 (defun appt-display-message (string mins)
230 The format of the visible reminder is controlled by `appt-display-format'.
234 (let ((appt-display-format
235 (if (eq appt-display-format 'ignore)
238 appt-display-format)))
239 (cond ((eq appt-display-format 'window)
246 (run-at-time (format "%d sec" appt-display-duration)
249 ((eq appt-display-format 'echo)
255 "Check for an appointment and update any reminder display.
270 Appointments are checked every `appt-display-interval' minutes.
273 `appt-display-format'
284 `appt-display-mode-line'
288 `appt-display-interval'
291 `appt-display-diary'
298 `appt-display-duration'
302 Function called to display appointment window.
309 (prev-appt-display-count (or appt-display-count 0))
311 ;; and display in whatever ways the user has selected.
316 ;; This is true every appt-display-interval minutes.
317 (zerop (mod prev-appt-display-count appt-display-interval))))
340 (if appt-display-diary
346 (let* ((diary-display-hook 'appt-make-list)
352 diary-selective-display))))
355 ;; restore its display state. Otherwise, kill it.
367 appt-display-count nil)
406 appt-display-count (1+ prev-appt-display-count))
408 (appt-display-message (cadr (car appt-time-msg-list))
410 (when appt-display-mode-line
416 ;; Reset the count to 0 in case we display another
420 appt-display-count nil)))))
424 (and appt-display-mode-line
447 (if (display-multi-frame-p)
455 (display-buffer appt-disp-buf)
456 (unless (or (special-display-p (buffer-name appt-disp-buf))
668 (let ((appt-display-diary nil))
675 ;; (display-time)
678 ;; The display-time call was not necessary, AFAICS.