Function: holiday-chinese-winter-solstice

holiday-chinese-winter-solstice is a byte-compiled function defined in cal-china.el.gz.

Signature

(holiday-chinese-winter-solstice)

Documentation

Date of Chinese winter solstice, if visible in calendar.

Returns (((MONTH DAY YEAR) TEXT)), where the date is Gregorian.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-china.el.gz
;;;###holiday-autoload
(defun holiday-chinese-winter-solstice ()
  "Date of Chinese winter solstice, if visible in calendar.
Returns (((MONTH DAY YEAR) TEXT)), where the date is Gregorian."
  (when (memq displayed-month '(11 12 1)) ; is December visible?
    (list (list (calendar-gregorian-from-absolute
                 (calendar-chinese-zodiac-sign-on-or-after
                  (calendar-absolute-from-gregorian
                   (list 12 15 (if (eq displayed-month 1)
                                   (1- displayed-year)
                                 displayed-year)))))
                "Winter Solstice Festival"))))