Function: solar-equinoxes-solstices

solar-equinoxes-solstices is a byte-compiled function defined in solar.el.gz.

Signature

(solar-equinoxes-solstices)

Documentation

Local date and time of equinoxes and solstices, if visible in the calendar.

Requires floating point.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/solar.el.gz
;;;###holiday-autoload
(defun solar-equinoxes-solstices ()
  "Local date and time of equinoxes and solstices, if visible in the calendar.
Requires floating point."
  (let (result)
    (dolist (month '(3 6 9 12))
      (when-let* ((y (calendar-month-visible-p month)))
        (push (car (solar-equinoxes-solstices-1 month y)) result)))
    result))