Function: calendar-month-name

calendar-month-name is a byte-compiled function defined in calendar.el.gz.

Signature

(calendar-month-name MONTH &optional ABBREV)

Documentation

Return a string with the name of month number MONTH.

Months are numbered from one. Month names are taken from the variable calendar-month-name-array, unless the optional argument ABBREV is non-nil, in which case calendar-month-abbrev-array is used.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/calendar.el.gz
(defun calendar-month-name (month &optional abbrev)
  "Return a string with the name of month number MONTH.
Months are numbered from one.  Month names are taken from the
variable `calendar-month-name-array', unless the optional
argument ABBREV is non-nil, in which case
`calendar-month-abbrev-array' is used."
  (aref (if abbrev calendar-month-abbrev-array calendar-month-name-array)
        (1- month)))