Variable: zone-frame-configuration-alist

zone-frame-configuration-alist is a variable defined in zone.el.gz.

Value

nil

Documentation

An Alist of frames and their cursor and window configuration.

Before zone starts using a frame, it saves the configuration before it touches anything. At the end of zoning, the frame configuration is restored.

The Alist key is the frame object, then value is the cons cell containing the window configuration and cursor type.

Source Code

;; Defined in /usr/src/emacs/lisp/play/zone.el.gz
;;;; Save frame configuration so it can be restored when we finish zoning

(defvar zone-frame-configuration-alist nil
  "An Alist of frames and their cursor and window configuration.

Before zone starts using a frame, it saves the configuration before it
touches anything.  At the end of zoning, the frame configuration is
restored.

The Alist key is the frame object, then value is the cons cell
containing the window configuration and cursor type.")