Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
43a2e52c
Commit
43a2e52c
authored
Feb 10, 1992
by
Jim Blandy
Browse files
*** empty log message ***
parent
0f39230e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
6 deletions
+26
-6
lisp/frame.el
lisp/frame.el
+26
-6
No files found.
lisp/frame.el
View file @
43a2e52c
...
...
@@ -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
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment