Variable: calendar-american-date-display-form

calendar-american-date-display-form is a customizable variable defined in calendar.el.gz.

Value

((if dayname (concat dayname ", ")) monthname " " day ", " year)

Documentation

Pseudo-pattern governing the way a date appears in the American style.

Normally you should not customize this, but calendar-date-display-form
(which see).

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/calendar.el.gz
(defcustom calendar-american-date-display-form
  '((if dayname (concat dayname ", ")) monthname " " day ", " year)
  "Pseudo-pattern governing the way a date appears in the American style.
Normally you should not customize this, but `calendar-date-display-form'
\(which see)."
  :type 'sexp
  :risky t
  :group 'calendar)