aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
authorKaroly Lorentey2004-06-24 07:44:13 +0000
committerKaroly Lorentey2004-06-24 07:44:13 +0000
commit3fa701994755105d1fb4b0b802338fc04e8a6937 (patch)
tree02ec9152f5f6e95bbb0b02265f51b832e712e8b5 /src/window.c
parent8c8d5f3503a2fb4918414c0b0b9dacd81c50f1a9 (diff)
parentbb72b9d0b5248404a55b599d99c0be5454704e4a (diff)
downloademacs-3fa701994755105d1fb4b0b802338fc04e8a6937.tar.gz
emacs-3fa701994755105d1fb4b0b802338fc04e8a6937.zip
Merged in changes from CVS trunk.
Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-409 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-410 Make sure image types are initialized for lookup too * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-411 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-412 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-413 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-414 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-415 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-416 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-417 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-418 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-419 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-202
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/window.c b/src/window.c
index ff0d810a9c8..5b4c8928232 100644
--- a/src/window.c
+++ b/src/window.c
@@ -6506,9 +6506,10 @@ using `special-display-function'. See also `special-display-regexps'.
6506An element of the list can be a list instead of just a string. 6506An element of the list can be a list instead of just a string.
6507There are two ways to use a list as an element: 6507There are two ways to use a list as an element:
6508 (BUFFER FRAME-PARAMETERS...) (BUFFER FUNCTION OTHER-ARGS...) 6508 (BUFFER FRAME-PARAMETERS...) (BUFFER FUNCTION OTHER-ARGS...)
6509In the first case, FRAME-PARAMETERS are used to create the frame. 6509In the first case, the FRAME-PARAMETERS are pairs of the form
6510In the latter case, FUNCTION is called with BUFFER as the first argument, 6510\(PARAMETER . VALUE); these parameter values are used to create the frame.
6511followed by OTHER-ARGS--it can display BUFFER in any way it likes. 6511In the second case, FUNCTION is called with BUFFER as the first argument,
6512followed by the OTHER-ARGS--it can display BUFFER in any way it likes.
6512All this is done by the function found in `special-display-function'. 6513All this is done by the function found in `special-display-function'.
6513 6514
6514If the specified frame parameters include (same-buffer . t), the 6515If the specified frame parameters include (same-buffer . t), the
@@ -6531,9 +6532,10 @@ using `special-display-function'.
6531An element of the list can be a list instead of just a string. 6532An element of the list can be a list instead of just a string.
6532There are two ways to use a list as an element: 6533There are two ways to use a list as an element:
6533 (REGEXP FRAME-PARAMETERS...) (REGEXP FUNCTION OTHER-ARGS...) 6534 (REGEXP FRAME-PARAMETERS...) (REGEXP FUNCTION OTHER-ARGS...)
6534In the first case, FRAME-PARAMETERS are used to create the frame. 6535In the first case, the FRAME-PARAMETERS are pairs of the form
6535In the latter case, FUNCTION is called with the buffer as first argument, 6536\(PARAMETER . VALUE); these parameter values are used to create the frame.
6536followed by OTHER-ARGS--it can display the buffer in any way it likes. 6537In the second case, FUNCTION is called with BUFFER as the first argument,
6538followed by the OTHER-ARGS--it can display the buffer in any way it likes.
6537All this is done by the function found in `special-display-function'. 6539All this is done by the function found in `special-display-function'.
6538 6540
6539If the specified frame parameters include (same-buffer . t), the 6541If the specified frame parameters include (same-buffer . t), the