Variable: todo-month-name-array

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

Value

["January" "February" "March" "April" "May" "June" "July" "August"
 "September" "October" "November" "December" "*"]

Documentation

Array of 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-name-array
  (vconcat calendar-month-name-array (vector "*"))
  "Array of month names, in order.
The final element is \"*\", indicating an unspecified month.")