Variable: display-buffer-mark-dedicated

display-buffer-mark-dedicated is a variable defined in window.el.gz.

Value

nil

Documentation

If non-nil, display-buffer marks the windows it creates as dedicated.

The actual non-nil value of this variable will be copied to the window-dedicated-p flag.

Source Code

;; Defined in /usr/src/emacs/lisp/window.el.gz
;; FIXME: Not implemented.
;; FIXME: By the way, there could be more levels of dedication:
;; - `barely' dedicated doesn't prevent reuse of the window, only records that
;;   the window hasn't been used for something else yet.
;; - `soft' (`softly') dedicated only allows reuse when asked explicitly.
;; - `strongly' never allows reuse.
(defvar display-buffer-mark-dedicated nil
  "If non-nil, `display-buffer' marks the windows it creates as dedicated.
The actual non-nil value of this variable will be copied to the
`window-dedicated-p' flag.")