Function: calendar-week-end-day

calendar-week-end-day is a byte-compiled function defined in calendar.el.gz.

Signature

(calendar-week-end-day)

Documentation

Return the index (0 for Sunday, etc.) of the last day of the week.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/calendar.el.gz
(defun calendar-week-end-day ()
  "Return the index (0 for Sunday, etc.) of the last day of the week."
  (mod (+ calendar-week-start-day 6) 7))