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-let* ((y (calendar-month-visible-p 12))) ; is December visible?
    (list (list (calendar-gregorian-from-absolute
                 (calendar-chinese-zodiac-sign-on-or-after
                  (calendar-absolute-from-gregorian
                   (list 12 15 y))))
                "Winter Solstice Festival"))))