summaryrefslogtreecommitdiff
path: root/lisp/frame.el
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-02-06 02:09:14 +0000
committerJim Blandy <jimb@redhat.com>1992-02-06 02:09:14 +0000
commit2aeab7eb3c04df03055478f3bca36946ccd37a0c (patch)
tree2109619848adc6de78c053f81995e8d78b2678e1 /lisp/frame.el
parentff74dd362c0d83c9ddab37ec45cee63a9e0c8c00 (diff)
downloademacs-2aeab7eb3c04df03055478f3bca36946ccd37a0c.tar.gz
*** empty log message ***
Diffstat (limited to 'lisp/frame.el')
-rw-r--r--lisp/frame.el10
1 files changed, 8 insertions, 2 deletions
diff --git a/lisp/frame.el b/lisp/frame.el
index 64b71a3f002..04c318d24fd 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -157,7 +157,14 @@ These supercede the values given in default-screen-alist.")
t)))
(defun new-screen (&optional parameters)
- "Create a new screen, displaying the current buffer."
+ "Create a new screen, displaying the current buffer.
+
+Optional argument PARAMETERS is an association-list of parameters
+describing the screen to create. Specifically, PARAMETERS is a list
+of elements of the form (NAME . VALUE), where NAME is a symbol from
+the following list:
+ name VALUE is the name to give
+"
(interactive)
(funcall screen-creation-function parameters))
@@ -241,6 +248,5 @@ These supercede the values given in default-screen-alist.")
(define-prefix-command 'ctl-x-3-map)
(define-key ctl-x-map "3" 'ctl-x-3-map)
-(define-key global-map "\C-z" 'iconify)
(define-key ctl-x-3-map "2" 'new-screen)
(define-key ctl-x-3-map "0" 'delete-screen)