Variable: calendar-european-date-display-form
calendar-european-date-display-form is a customizable variable defined
in calendar.el.gz.
Value
((if dayname
(concat dayname ", "))
day " " monthname " " year)
Documentation
Pseudo-pattern governing the way a date appears in the European 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-european-date-display-form
'((if dayname (concat dayname ", ")) day " " monthname " " year)
"Pseudo-pattern governing the way a date appears in the European style.
Normally you should not customize this, but `calendar-date-display-form'
\(which see)."
:type 'sexp
:risky t
:group 'calendar)