Function: holiday-filter-visible-calendar

holiday-filter-visible-calendar is a byte-compiled function defined in holidays.el.gz.

Signature

(holiday-filter-visible-calendar HLIST)

Documentation

Filter list of holidays HLIST, and return only the visible ones.

HLIST is a list of elements of the form (DATE) TEXT.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/holidays.el.gz
(defun holiday-filter-visible-calendar (hlist)
  "Filter list of holidays HLIST, and return only the visible ones.
HLIST is a list of elements of the form (DATE) TEXT."
  (delq nil (mapcar (lambda (p)
                      (and (car p) (calendar-date-is-visible-p (car p)) p))
                    hlist)))