Variable: calendar-setup

calendar-setup is a customizable variable defined in calendar.el.gz.

Value

nil

Documentation

The frame setup of the calendar.

The choices are: one-frame (calendar and diary together in one separate, dedicated frame); two-frames (calendar and diary in separate, dedicated frames); calendar-only (calendar in a separate, dedicated frame); with any other value the current frame is used. Using any of the first three options overrides the value of calendar-view-diary-initially-flag.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/calendar.el.gz
(defcustom calendar-setup nil
  "The frame setup of the calendar.
The choices are: `one-frame' (calendar and diary together in one separate,
dedicated frame); `two-frames' (calendar and diary in separate, dedicated
frames); `calendar-only' (calendar in a separate, dedicated frame); with
any other value the current frame is used.  Using any of the first
three options overrides the value of `calendar-view-diary-initially-flag'."
  :type '(choice
          (const :tag "calendar and diary in separate frame" one-frame)
          (const :tag "calendar and diary each in own frame" two-frames)
          (const :tag "calendar in separate frame" calendar-only)
          (const :tag "use current frame" nil))
  :group 'calendar)