Variable: todo-month-abbrev-array

todo-month-abbrev-array is a variable defined in todo-mode.el.gz.

Value

["Jan" "Feb" "Mar" "Apr" "May" "Jun" "Jul" "Aug" "Sep" "Oct" "Nov" "Dec" "*"]

Documentation

Array of abbreviated month names, in order.

The final element is "*", indicating an unspecified month.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
(defconst todo-month-abbrev-array
  (vconcat calendar-month-abbrev-array (vector "*"))
  "Array of abbreviated month names, in order.
The final element is \"*\", indicating an unspecified month.")