Function: calendar-chinese-mark-date-pattern

calendar-chinese-mark-date-pattern is a byte-compiled function defined in cal-china.el.gz.

Signature

(calendar-chinese-mark-date-pattern MONTH DAY YEAR &optional COLOR)

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-china.el.gz
(defun calendar-chinese-mark-date-pattern (month day year &optional color)
  (calendar-mark-1 month day year
                   #'calendar-chinese-from-absolute-for-diary
                   #'calendar-chinese-to-absolute-for-diary
                   color)
  (unless (zerop month)
    (calendar-mark-1 month day year
                     #'calendar-chinese-from-absolute-for-diary
                     (lambda (thedate)
                       (calendar-chinese-to-absolute-for-diary thedate t))
                     color)))