summaryrefslogtreecommitdiff
path: root/lisp/frame.el
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2009-01-22 06:58:10 +0000
committerDan Nicolaescu <dann@ics.uci.edu>2009-01-22 06:58:10 +0000
commitf79b43b27b974084222410a51040a90357a863fb (patch)
tree284321c1f6b4b439203d33ebc0117c475782062f /lisp/frame.el
parenta078d6e54aad1a36f2cbfdfcea8a8e1763c5400a (diff)
downloademacs-f79b43b27b974084222410a51040a90357a863fb.tar.gz
* frame.el (make-frame-on-tty): Remove function, inline contents
in the only user ... * server.el (server-create-tty-frame): ... here. * frames.texi (Multiple Displays): Remove documentation for removed function make-frame-on-tty.
Diffstat (limited to 'lisp/frame.el')
-rw-r--r--lisp/frame.el17
1 files changed, 0 insertions, 17 deletions
diff --git a/lisp/frame.el b/lisp/frame.el
index 1adda6c494e..1576ae7e4c2 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -654,23 +654,6 @@ The optional argument PARAMETERS specifies additional frame parameters."
(make-frame `((window-system . x)
(display . ,display) . ,parameters)))))
-(defun make-frame-on-tty (tty type &optional parameters)
- "Make a frame on terminal device TTY.
-TTY should be the file name of the tty device to use. TYPE
-should be the terminal type string of TTY, for example \"xterm\"
-or \"vt100\". The optional third argument PARAMETERS specifies
-additional frame parameters."
- ;; Use "F" rather than "f", in case the device does not exist, as
- ;; far as the filesystem is concerned.
- (interactive "FOpen frame on tty device: \nsTerminal type of %s: ")
- (unless tty
- (error "Invalid terminal device"))
- (unless type
- (error "Invalid terminal type"))
- (if (eq window-system 'pc)
- (make-frame `((window-system . pc) (tty . ,tty) (tty-type . ,type) . ,parameters))
- (make-frame `((window-system . nil) (tty . ,tty) (tty-type . ,type) . ,parameters))))
-
(declare-function x-close-connection "xfns.c" (terminal))
(defun close-display-connection (display)