aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2003-02-24 16:50:00 +0000
committerRichard M. Stallman2003-02-24 16:50:00 +0000
commitc1f21754703d075fc6b389ad2571e055a0800ce8 (patch)
tree68db296633a4e2beaa305773db89634cceff164a
parent7878d6b6c14e7d71980a2e30dd6b46177763c346 (diff)
downloademacs-c1f21754703d075fc6b389ad2571e055a0800ce8.tar.gz
emacs-c1f21754703d075fc6b389ad2571e055a0800ce8.zip
Give example of using special-display-buffer-names to specify frame parameters.
-rw-r--r--lispref/windows.texi21
1 files changed, 16 insertions, 5 deletions
diff --git a/lispref/windows.texi b/lispref/windows.texi
index 1fc7a7e5022..f43a792f3be 100644
--- a/lispref/windows.texi
+++ b/lispref/windows.texi
@@ -960,11 +960,22 @@ buffer specially.
960By default, special display means to give the buffer a dedicated frame. 960By default, special display means to give the buffer a dedicated frame.
961 961
962If an element is a list, instead of a string, then the @sc{car} of the 962If an element is a list, instead of a string, then the @sc{car} of the
963list is the buffer name, and the rest of the list says how to create the 963list is the buffer name, and the rest of the list says how to create
964frame. There are two possibilities for the rest of the list. It can be 964the frame. There are two possibilities for the rest of the list (its
965an alist, specifying frame parameters, or it can contain a function and 965@sc{cdr}). It can be an alist, specifying frame parameters, or it can
966arguments to give to it. (The function's first argument is always the 966contain a function and arguments to give to it. (The function's first
967buffer to be displayed; the arguments from the list come after that.) 967argument is always the buffer to be displayed; the arguments from the
968list come after that.)
969
970For example:
971
972@example
973(("myfile" (minibuffer) (menu-bar-lines . 0)))
974@end example
975
976@noindent
977specifies to display a buffer named @samp{myfile} in a dedicated frame
978with specified @code{minibuffer} and @code{menu-bar-lines} parameters.
968@end defopt 979@end defopt
969 980
970@defopt special-display-regexps 981@defopt special-display-regexps