Function: make-frame-on-display

make-frame-on-display is an interactive and byte-compiled function defined in frame.el.gz.

Signature

(make-frame-on-display DISPLAY &optional PARAMETERS)

Documentation

Make a frame on display DISPLAY.

The optional argument PARAMETERS specifies additional frame parameters.

View in manual

Probably introduced at or before Emacs version 19.29.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/frame.el.gz
(defun make-frame-on-display (display &optional parameters)
  "Make a frame on display DISPLAY.
The optional argument PARAMETERS specifies additional frame parameters."
  (interactive (if (fboundp 'x-display-list)
                   (list (completing-read "Make frame on display: "
                                          (x-display-list) nil
                                          nil (car (x-display-list))
                                          nil (car (x-display-list))))
                 (user-error "This Emacs build does not support X displays")))
  (make-frame (cons (cons 'display display) parameters)))