Variable: diary-frame-parameters

diary-frame-parameters is a customizable variable defined in cal-x.el.gz.

Value

((name . "Diary") (title . "Diary") (height . 10) (width . 80)
 (unsplittable . t) (minibuffer))

Documentation

Parameters of the diary frame, if the diary is in its own frame.

Relevant if calendar-setup has the value two-frames.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-x.el.gz
(defcustom diary-frame-parameters
  '((name . "Diary") (title . "Diary") (height . 10) (width . 80)
    (unsplittable . t) (minibuffer . nil))
  "Parameters of the diary frame, if the diary is in its own frame.
Relevant if `calendar-setup' has the value `two-frames'."
  :type 'alist
  :options '((name string) (title string) (height integer) (width integer)
             (unsplittable boolean) (minibuffer boolean)
             (vertical-scroll-bars boolean))
  :group 'calendar)