aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
authorKaroly Lorentey2005-05-02 14:38:00 +0000
committerKaroly Lorentey2005-05-02 14:38:00 +0000
commit09a1444abb2494d0db3d71e4c942f5210786b619 (patch)
tree0fa0b9bb0d41ed6dea6cffc07681d931431704e7 /src/window.c
parent030cd69ff13d95f439ca0d13a03215fc45959789 (diff)
parentb21eabf6259ac5761aac04e68692384f2d23a5c3 (diff)
downloademacs-09a1444abb2494d0db3d71e4c942f5210786b619.tar.gz
emacs-09a1444abb2494d0db3d71e4c942f5210786b619.zip
Merged from miles@gnu.org--gnu-2005 (patch 281-285)
Patches applied: * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-281 Update from CVS * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-282 Update from CVS * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-283 Update from CVS * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-284 Update from CVS * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-285 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-336
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c20
1 files changed, 12 insertions, 8 deletions
diff --git a/src/window.c b/src/window.c
index ed177693e53..67cbd73bc50 100644
--- a/src/window.c
+++ b/src/window.c
@@ -3265,9 +3265,10 @@ display_buffer_1 (window)
3265 3265
3266DEFUN ("special-display-p", Fspecial_display_p, Sspecial_display_p, 1, 1, 0, 3266DEFUN ("special-display-p", Fspecial_display_p, Sspecial_display_p, 1, 1, 0,
3267 doc: /* Returns non-nil if a buffer named BUFFER-NAME gets a special frame. 3267 doc: /* Returns non-nil if a buffer named BUFFER-NAME gets a special frame.
3268If the value is t, a frame would be created for that buffer 3268If the value is t, `display-buffer' or `pop-to-buffer' would create a
3269using the default frame parameters. If the value is a list, 3269special frame for that buffer using the default frame parameters.
3270it is a list of frame parameters that would be used 3270
3271If the value is a list, it is a list of frame parameters that would be used
3271to make a frame for that buffer. 3272to make a frame for that buffer.
3272The variables `special-display-buffer-names' 3273The variables `special-display-buffer-names'
3273and `special-display-regexps' control this. */) 3274and `special-display-regexps' control this. */)
@@ -3301,7 +3302,9 @@ and `special-display-regexps' control this. */)
3301} 3302}
3302 3303
3303DEFUN ("same-window-p", Fsame_window_p, Ssame_window_p, 1, 1, 0, 3304DEFUN ("same-window-p", Fsame_window_p, Ssame_window_p, 1, 1, 0,
3304 doc: /* Returns non-nil if a new buffer named BUFFER-NAME would use the same window. 3305 doc: /* Returns non-nil if a buffer named BUFFER-NAME would use the same window.
3306More precisely, if `display-buffer' or `pop-to-buffer' would display
3307that buffer in the selected window rather than (as usual) in some other window.
3305See `same-window-buffer-names' and `same-window-regexps'. */) 3308See `same-window-buffer-names' and `same-window-regexps'. */)
3306 (buffer_name) 3309 (buffer_name)
3307 Lisp_Object buffer_name; 3310 Lisp_Object buffer_name;
@@ -6750,7 +6753,8 @@ where `pop-up-frame-alist' would hold the default frame parameters. */);
6750 6753
6751 DEFVAR_LISP ("special-display-buffer-names", &Vspecial_display_buffer_names, 6754 DEFVAR_LISP ("special-display-buffer-names", &Vspecial_display_buffer_names,
6752 doc: /* *List of buffer names that should have their own special frames. 6755 doc: /* *List of buffer names that should have their own special frames.
6753Displaying a buffer whose name is in this list makes a special frame for it 6756Displaying a buffer with `display-buffer' or `pop-to-buffer',
6757if its name is in this list, makes a special frame for it
6754using `special-display-function'. See also `special-display-regexps'. 6758using `special-display-function'. See also `special-display-regexps'.
6755 6759
6756An element of the list can be a list instead of just a string. 6760An element of the list can be a list instead of just a string.
@@ -6775,9 +6779,9 @@ Those variables take precedence over this one. */);
6775 6779
6776 DEFVAR_LISP ("special-display-regexps", &Vspecial_display_regexps, 6780 DEFVAR_LISP ("special-display-regexps", &Vspecial_display_regexps,
6777 doc: /* *List of regexps saying which buffers should have their own special frames. 6781 doc: /* *List of regexps saying which buffers should have their own special frames.
6778If a buffer name matches one of these regexps, it gets its own frame. 6782When displaying a buffer with `display-buffer' or `pop-to-buffer',
6779Displaying a buffer whose name is in this list makes a special frame for it 6783if any regexp in this list matches the buffer name, it makes a
6780using `special-display-function'. 6784special frame for the buffer by calling `special-display-function'.
6781 6785
6782An element of the list can be a list instead of just a string. 6786An element of the list can be a list instead of just a string.
6783There are two ways to use a list as an element: 6787There are two ways to use a list as an element: