Variable: icalendar-weekday-numbers

icalendar-weekday-numbers is a variable defined in icalendar-parser.el.gz.

Value

(("SU" . 0) ("MO" . 1) ("TU" . 2) ("WE" . 3) ("TH" . 4) ("FR" . 5)
 ("SA" . 6))

Documentation

Alist mapping two-letter weekday abbreviations to numbers 0 to 6.

Weekday abbreviations in recurrence rule parts are translated to and from numbers for compatibility with calendar-* and decoded-time-* functions.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
       (** 1 3 digit))) ; 1 to 366

(defconst ical:weekday-numbers
  '(("SU" . 0)
    ("MO" . 1)
    ("TU" . 2)
    ("WE" . 3)
    ("TH" . 4)
    ("FR" . 5)
    ("SA" . 6))
  "Alist mapping two-letter weekday abbreviations to numbers 0 to 6.
Weekday abbreviations in recurrence rule parts are translated to
and from numbers for compatibility with calendar-* and
decoded-time-* functions.")