Variable: calendar-and-diary-frame-parameters
calendar-and-diary-frame-parameters is a customizable variable defined
in cal-x.el.gz.
Value
((name . "Calendar") (title . "Calendar") (height . 28) (width . 80)
(minibuffer))
Documentation
Parameters of the frame that displays both the calendar and the diary.
Relevant if calendar-setup has the value one-frame.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/cal-x.el.gz
(defcustom calendar-and-diary-frame-parameters
'((name . "Calendar") (title . "Calendar") (height . 28) (width . 80)
(minibuffer . nil))
"Parameters of the frame that displays both the calendar and the diary.
Relevant if `calendar-setup' has the value `one-frame'."
:type 'alist
:options '((name string) (title string) (height integer) (width integer)
(unsplittable boolean) (minibuffer boolean)
(vertical-scroll-bars boolean))
:group 'calendar)