Function: diary-chinese-list-entries

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

Signature

(diary-chinese-list-entries)

Documentation

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

Chinese date diary entries must be prefixed by diary-chinese-entry-symbol
(normally a C). The same diary-date-forms govern the style
of the Chinese calendar entries. If a Chinese 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

Probably introduced at or before Emacs version 25.1.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-china.el.gz
;;;###cal-autoload
(defun diary-chinese-list-entries ()
  "Add any Chinese date entries from the diary file to `diary-entries-list'.
Chinese date diary entries must be prefixed by `diary-chinese-entry-symbol'
\(normally a `C').  The same `diary-date-forms' govern the style
of the Chinese calendar entries.  If a Chinese 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-chinese-month-name-array
                        diary-chinese-entry-symbol
                        #'calendar-chinese-from-absolute-for-diary))