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

Lines Matching defs:today

191 (defface calendar-today
193 "Face for indicating today's date."
196 (put 'calendar-today-face 'face-alias 'calendar-today)
219 (defcustom calendar-today-marker
222 'calendar-today)
223 "How to mark today's date in the calendar.
225 Marking today's date is done only if you set up `today-visible-calendar-hook'
320 (defcustom today-visible-calendar-hook nil
322 This can be used, for example, to replace today's date with asterisks; a
324 (setq today-visible-calendar-hook 'calendar-star-date)
325 It can also be used to mark the current date with `calendar-today-marker';
327 (setq today-visible-calendar-hook 'calendar-mark-today)
329 The corresponding variable `today-invisible-calendar-hook' is the list of
340 (defcustom today-invisible-calendar-hook nil
343 The corresponding variable `today-visible-calendar-hook' is the list of
435 Bill Blattner visits Princeton today
1474 (autoload 'calendar-goto-today "cal-move"
1626 surrounded by the previous and next months. The cursor is put on today's date.
1659 The hooks given by the variable `today-visible-calendar-hook' are run
1662 `today-invisible-calendar-hook' are run. Thus, for example, setting
1663 `today-visible-calendar-hook' to 'calendar-star-date will cause today's date
1795 Defaults to today's date if DATE is not given.
2055 (today (calendar-current-date))
2056 (month (extract-calendar-month today))
2057 (day (extract-calendar-day today))
2058 (year (extract-calendar-year today))
2059 (today-visible
2063 (day-in-week (calendar-day-of-week today))
2071 (if today-visible today (list displayed-month 1 displayed-year)))
2087 ;;; (calendar-date-is-legal-p today) ; useful for BC dates
2092 (if today-visible
2093 (run-hooks 'today-visible-calendar-hook)
2094 (run-hooks 'today-invisible-calendar-hook)))))
2277 (define-key map "." 'calendar-goto-today)
2380 "\\<calendar-mode-map>\\[calendar-goto-today] today")
2381 'help-echo "mouse-1: go to today's date"
2383 'keymap (make-mode-line-mouse-map 'mouse-1 #'calendar-goto-today)))
2667 (today (calendar-current-date)))
2672 ((calendar-date-is-visible-p today) today)
2992 This function can be used with the `today-visible-calendar-hook' run after the
3007 (defun calendar-mark-today ()
3009 The date is marked with `calendar-today-marker'. This function can be used with
3010 the `today-visible-calendar-hook' run after the calendar window has been
3014 calendar-today-marker))
3082 Defaults to today's date if DATE is not given."