Variable: pop-up-frame-function

pop-up-frame-function is a customizable variable defined in window.el.gz.

Value

#[0 "\301!\207" [pop-up-frame-alist make-frame] 2]

Documentation

Function used by display-buffer for creating a new frame.

This function is called with no arguments and should return a new frame. The default value calls make-frame with the argument pop-up-frame-alist.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/window.el.gz
(defcustom pop-up-frame-function
  (lambda () (make-frame pop-up-frame-alist))
  "Function used by `display-buffer' for creating a new frame.
This function is called with no arguments and should return a new
frame.  The default value calls `make-frame' with the argument
`pop-up-frame-alist'."
  :type 'function
  :group 'frames)