Variable: diary-nongregorian-listing-hook

diary-nongregorian-listing-hook is a customizable variable defined in diary-lib.el.gz.

Value

nil

Documentation

List of functions called for listing diary file and included files.

As the files are processed for diary entries, these functions are used to cull relevant entries. You can use any or all of diary-bahai-list-entries, diary-hebrew-list-entries, and diary-islamic-list-entries. The documentation for these functions describes the style of such diary entries.

You can use this hook for other functions as well, if you want them to be run on the main diary file and any included diary files. Otherwise, use diary-list-entries-hook, which runs only for the main diary file.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/diary-lib.el.gz
(defcustom diary-nongregorian-listing-hook nil
  "List of functions called for listing diary file and included files.
As the files are processed for diary entries, these functions are used
to cull relevant entries.  You can use any or all of
`diary-bahai-list-entries', `diary-hebrew-list-entries', and
`diary-islamic-list-entries'.  The documentation for these functions
describes the style of such diary entries.

You can use this hook for other functions as well, if you want them to
be run on the main diary file and any included diary files.  Otherwise,
use `diary-list-entries-hook', which runs only for the main diary file."
  :type 'hook
  :options '(diary-bahai-list-entries
             diary-hebrew-list-entries
             diary-islamic-list-entries)
  :group 'diary)