Variable: calendar-weekend-days

calendar-weekend-days is a customizable variable defined in calendar.el.gz.

Value

(0 6)

Documentation

Days of the week considered weekend days.

0 means Sunday, 1 means Monday, and so on.

Determines which day headers are fontified with calendar-weekend-header.

This variable was added, or its default value changed, in Emacs 25.1.

View in manual

Probably introduced at or before Emacs version 25.1.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/calendar.el.gz
(defcustom calendar-weekend-days '(0 6)
  "Days of the week considered weekend days.
0 means Sunday, 1 means Monday, and so on.

Determines which day headers are fontified with
`calendar-weekend-header'."
  :type '(repeat integer)
  :version "25.1"
  :group 'calendar)