Variable: cal-tex-which-days
cal-tex-which-days is a customizable variable defined in
cal-tex.el.gz.
Value
(0 1 2 3 4 5 6)
Documentation
The days of the week that are displayed on the portrait monthly calendar.
Sunday is 0, Monday is 1, and so on. The default is to print from Sunday to Saturday. For example, (1 3 5) prints only Monday, Wednesday, Friday.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/cal-tex.el.gz
(defcustom cal-tex-which-days '(0 1 2 3 4 5 6)
"The days of the week that are displayed on the portrait monthly calendar.
Sunday is 0, Monday is 1, and so on. The default is to print from Sunday to
Saturday. For example, (1 3 5) prints only Monday, Wednesday, Friday."
:type '(repeat integer)
:group 'calendar-tex)