Variable: transpose-dedicated-windows
transpose-dedicated-windows is a customizable variable defined in
window-x.el.gz.
Value
nil
Documentation
Whether dedicated windows may be transposed.
If this is nil, functions for transposing, flipping or rotating the window layout and functions for rotating windows will report an error when they encounter a dedicated window. If this is t, they handle dedicated windows like non-dedicated ones.
This variable was added, or its default value changed, in Emacs 31.1.
Probably introduced at or before Emacs version 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/window-x.el.gz
(defcustom transpose-dedicated-windows nil
"Whether dedicated windows may be transposed.
If this is nil, functions for transposing, flipping or rotating the
window layout and functions for rotating windows will report an error
when they encounter a dedicated window. If this is t, they handle
dedicated windows like non-dedicated ones."
:type 'boolean
:version "31.1"
:group 'windows)