comparison lisp/frame.el @ 9687:1048e2d032e6

(make-frame-on-display): New function.
author Richard M. Stallman <rms@gnu.org>
date Tue, 25 Oct 1994 09:49:53 +0000
parents df2f1773aa06
children 1368ece6ec04
comparison
equal deleted inserted replaced
9686:cd788aa8cb2a 9687:1048e2d032e6
391 (interactive) 391 (interactive)
392 (select-window (previous-window (selected-window) 392 (select-window (previous-window (selected-window)
393 (> (minibuffer-depth) 0) 393 (> (minibuffer-depth) 0)
394 t))) 394 t)))
395 395
396 (defun make-frame-on-display (display &optional parameters)
397 "Make a frame on display DISPLAY.
398 The optional second argument PARAMETERS specifies additional frame parameters."
399 (interactive "sMake frame on display: ")
400 (make-frame (cons (cons 'display display) parameters)))
401
396 ;; Alias, kept temporarily. 402 ;; Alias, kept temporarily.
397 (defalias 'new-frame 'make-frame) 403 (defalias 'new-frame 'make-frame)
398 (defun make-frame (&optional parameters) 404 (defun make-frame (&optional parameters)
399 "Create a new frame, displaying the current buffer. 405 "Create a new frame, displaying the current buffer.
400 406