]> git.eshelyaron.com Git - emacs.git/commitdiff
(make-frame-on-display): New function.
authorRichard M. Stallman <rms@gnu.org>
Tue, 25 Oct 1994 09:49:53 +0000 (09:49 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 25 Oct 1994 09:49:53 +0000 (09:49 +0000)
lisp/frame.el

index 39cb483acc3e5bcda63b109142491a8ac494dfb3..577771c5901cb6ea08c47e8daafb9812e6d28a45 100644 (file)
@@ -393,6 +393,12 @@ These supersede the values given in `default-frame-alist'.")
                                  (> (minibuffer-depth) 0)
                                  t)))
 
+(defun make-frame-on-display (display &optional parameters)
+  "Make a frame on display DISPLAY.
+The optional second argument PARAMETERS specifies additional frame parameters."
+  (interactive "sMake frame on display: ")
+  (make-frame (cons (cons 'display display) parameters)))
+
 ;; Alias, kept temporarily.
 (defalias 'new-frame 'make-frame)
 (defun make-frame (&optional parameters)