Variable: display-buffer-overriding-action
display-buffer-overriding-action is a variable defined in
window.el.gz.
Value
(nil)
Documentation
Overriding action for buffer display.
This action overrides all the other actions in the action
variables and arguments passed to display-buffer. The value
should be a cons cell (FUNCTIONS . ALIST), where FUNCTIONS is a
function or a list of functions. Each function should accept two
arguments: a buffer to display and an alist similar to ALIST.
See display-buffer for details.
This variable is not intended for user customization. Lisp
programs should never set this variable permanently but may bind
it around calls of buffer display functions like display-buffer
or pop-to-buffer. Since such a binding will affect any nested
buffer display requests, this variable should be used with utmost
care.
Probably introduced at or before Emacs version 24.1.
Source Code
;; Defined in /usr/src/emacs/lisp/window.el.gz
(defvar display-buffer-overriding-action '(nil . nil)
"Overriding action for buffer display.
This action overrides all the other actions in the action
variables and arguments passed to `display-buffer'. The value
should be a cons cell (FUNCTIONS . ALIST), where FUNCTIONS is a
function or a list of functions. Each function should accept two
arguments: a buffer to display and an alist similar to ALIST.
See `display-buffer' for details.
This variable is not intended for user customization. Lisp
programs should never set this variable permanently but may bind
it around calls of buffer display functions like `display-buffer'
or `pop-to-buffer'. Since such a binding will affect any nested
buffer display requests, this variable should be used with utmost
care.")