aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1992-02-10 05:20:54 +0000
committerJim Blandy1992-02-10 05:20:54 +0000
commit43a2e52c06534ecdb7c5240c8c402b50647f31cc (patch)
treee8b9345a130b497ef60ff9cc32130d8f9c8cb7ac
parent0f39230e862e2cbeff50dcd703c27944e1740d42 (diff)
downloademacs-43a2e52c06534ecdb7c5240c8c402b50647f31cc.tar.gz
emacs-43a2e52c06534ecdb7c5240c8c402b50647f31cc.zip
*** empty log message ***
-rw-r--r--lisp/frame.el32
1 files changed, 26 insertions, 6 deletions
diff --git a/lisp/frame.el b/lisp/frame.el
index 04c318d24fd..8a24cc81e51 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -159,12 +159,32 @@ These supercede the values given in default-screen-alist.")
159(defun new-screen (&optional parameters) 159(defun new-screen (&optional parameters)
160 "Create a new screen, displaying the current buffer. 160 "Create a new screen, displaying the current buffer.
161 161
162Optional argument PARAMETERS is an association-list of parameters 162Optional argument PARAMETERS is an alist of parameters for the new
163describing the screen to create. Specifically, PARAMETERS is a list 163screen. Specifically, PARAMETERS is a list of pairs, each having one
164of elements of the form (NAME . VALUE), where NAME is a symbol from 164of the following forms:
165the following list: 165
166 name VALUE is the name to give 166(name . STRING) - The screen should be named STRING.
167" 167
168(height . NUMBER) - The screen should be NUMBER text lines high. If
169 this parameter is present, the width parameter must also be
170 given.
171
172(width . NUMBER) - The screen should be NUMBER characters in width.
173 If this parameter is present, the height parameter must also
174 be given.
175
176(minibuffer . t) - the screen should have a minibuffer
177(minibuffer . none) - the screen should have no minibuffer
178(minibuffer . only) - the screen should contain only a minibuffer
179(minibuffer . WINDOW) - the screen should use WINDOW as its minibuffer window.
180
181(NAME . VALUE), specifying the parameter and the value it should have.
182NAME should be one of the following symbols:
183 name VALUE
184
185The documentation for the function x-create-screen describes
186additional screen parameters that Emacs will recognize when running
187under the X Window System."
168 (interactive) 188 (interactive)
169 (funcall screen-creation-function parameters)) 189 (funcall screen-creation-function parameters))
170 190