Function: frameset--initial-params
frameset--initial-params is a byte-compiled function defined in
frameset.el.gz.
Signature
(frameset--initial-params PARAMETERS)
Documentation
Return a list of PARAMETERS that must be set when creating the frame.
Setting position and size parameters as soon as possible helps reducing
flickering; other parameters, like minibuffer and border-width, can
not be changed once the frame has been created. Internal use only.
Source Code
;; Defined in /usr/src/emacs/lisp/frameset.el.gz
(defun frameset--initial-params (parameters)
"Return a list of PARAMETERS that must be set when creating the frame.
Setting position and size parameters as soon as possible helps reducing
flickering; other parameters, like `minibuffer' and `border-width', can
not be changed once the frame has been created. Internal use only."
(cl-loop for param in '(left top width height border-width minibuffer)
when (assq param parameters) collect it))