aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/frame.el
diff options
context:
space:
mode:
authorJim Blandy <[email protected]>1992-02-10 05:20:54 +0000
committerJim Blandy <[email protected]>1992-02-10 05:20:54 +0000
commit43a2e52c06534ecdb7c5240c8c402b50647f31cc (patch)
treee8b9345a130b497ef60ff9cc32130d8f9c8cb7ac /lisp/frame.el
parent0f39230e862e2cbeff50dcd703c27944e1740d42 (diff)
*** empty log message ***
Diffstat (limited to 'lisp/frame.el')
-rw-r--r--lisp/frame.el32
1 files changed, 26 insertions, 6 deletions
diff --git a/lisp/frame.el b/lisp/frame.el
index 04c318d24f..8a24cc81e5 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -159,12 +159,32 @@ These supercede the values given in default-screen-alist.")
(defun new-screen (&optional parameters)
"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
-"
+Optional argument PARAMETERS is an alist of parameters for the new
+screen. Specifically, PARAMETERS is a list of pairs, each having one
+of the following forms:
+
+(name . STRING) - The screen should be named STRING.
+
+(height . NUMBER) - The screen should be NUMBER text lines high. If
+ this parameter is present, the width parameter must also be
+ given.
+
+(width . NUMBER) - The screen should be NUMBER characters in width.
+ If this parameter is present, the height parameter must also
+ be given.
+
+(minibuffer . t) - the screen should have a minibuffer
+(minibuffer . none) - the screen should have no minibuffer
+(minibuffer . only) - the screen should contain only a minibuffer
+(minibuffer . WINDOW) - the screen should use WINDOW as its minibuffer window.
+
+(NAME . VALUE), specifying the parameter and the value it should have.
+NAME should be one of the following symbols:
+ name VALUE
+
+The documentation for the function x-create-screen describes
+additional screen parameters that Emacs will recognize when running
+under the X Window System."
(interactive)
(funcall screen-creation-function parameters))