Variable: default-minibuffer-frame
default-minibuffer-frame is a variable defined in frame.c.
Value
nil
Documentation
Minibuffer-less frames by default use this frame's minibuffer.
Emacs consults this variable only when creating a minibuffer-less frame
and no explicit minibuffer window has been specified for that frame via
the minibuffer frame parameter. Once such a frame has been created,
setting this variable does not change that frame's previous association.
This variable is local to the current terminal and cannot be buffer-local.
Probably introduced at or before Emacs version 19.29.
Source Code
// Defined in /usr/src/emacs/src/frame.c
DEFVAR_KBOARD ("default-minibuffer-frame", Vdefault_minibuffer_frame,
doc: /* Minibuffer-less frames by default use this frame's minibuffer.
Emacs consults this variable only when creating a minibuffer-less frame
and no explicit minibuffer window has been specified for that frame via
the `minibuffer' frame parameter. Once such a frame has been created,
setting this variable does not change that frame's previous association.
This variable is local to the current terminal and cannot be buffer-local. */);