Function: diary-view-other-diary-entries
diary-view-other-diary-entries is an autoloaded, interactive and
byte-compiled function defined in diary-lib.el.gz.
Signature
(diary-view-other-diary-entries ARG DFILE)
Documentation
Prepare and display buffer of diary entries from an alternative diary file.
Searches for entries that match ARG days, starting with the date indicated by the cursor position in the displayed three-month calendar. DFILE specifies the file to use as the diary file.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/diary-lib.el.gz
;;;###cal-autoload
(defun diary-view-other-diary-entries (arg dfile)
"Prepare and display buffer of diary entries from an alternative diary file.
Searches for entries that match ARG days, starting with the date indicated
by the cursor position in the displayed three-month calendar.
DFILE specifies the file to use as the diary file."
(interactive
(list (prefix-numeric-value current-prefix-arg)
(read-file-name "Enter diary file name: " default-directory nil t)))
(let ((diary-file dfile))
(diary-view-entries arg)))