Function: diary-view-entries

diary-view-entries is an autoloaded, interactive and byte-compiled function defined in diary-lib.el.gz.

Signature

(diary-view-entries &optional ARG)

Documentation

Prepare and display a buffer with diary entries.

Searches the file named in diary-file for entries that match ARG days starting with the date indicated by the cursor position in the displayed three-month calendar.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/diary-lib.el.gz
;;;###cal-autoload
(defun diary-view-entries (&optional arg)
  "Prepare and display a buffer with diary entries.
Searches the file named in `diary-file' for entries that match
ARG days starting with the date indicated by the cursor position
in the displayed three-month calendar."
  (interactive "p")
  (diary-check-diary-file)
  (diary-list-entries (calendar-cursor-to-date t) arg))