Function: diary-islamic-list-entries

diary-islamic-list-entries is an autoloaded and byte-compiled function defined in cal-islam.el.gz.

Signature

(diary-islamic-list-entries)

Documentation

Add any Islamic date entries from the diary file to diary-entries-list.

Islamic date diary entries must be prefaced by diary-islamic-entry-symbol
(normally an I). The same diary-date-forms govern the style
of the Islamic calendar entries, except that the Islamic month names cannot be abbreviated. The Islamic months are numbered from 1 to 12 with Muharram being 1 and 12 being Dhu al-Hijjah. If an Islamic date diary entry begins with diary-nonmarking-symbol, the entry will appear in the diary listing, but will not be marked in the calendar. This function is provided for use with diary-nongregorian-listing-hook.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-islam.el.gz
;;;###diary-autoload
(defun diary-islamic-list-entries ()
  "Add any Islamic date entries from the diary file to `diary-entries-list'.
Islamic date diary entries must be prefaced by `diary-islamic-entry-symbol'
\(normally an `I').  The same `diary-date-forms' govern the style
of the Islamic calendar entries, except that the Islamic month
names cannot be abbreviated.  The Islamic months are numbered
from 1 to 12 with Muharram being 1 and 12 being Dhu al-Hijjah.
If an Islamic date diary entry begins with `diary-nonmarking-symbol',
the entry will appear in the diary listing, but will not be
marked in the calendar.  This function is provided for use with
`diary-nongregorian-listing-hook'."
  (diary-list-entries-1 calendar-islamic-month-name-array
                        diary-islamic-entry-symbol
                        'calendar-islamic-from-absolute))