diff options
| author | Karoly Lorentey | 2005-05-02 14:38:00 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2005-05-02 14:38:00 +0000 |
| commit | 09a1444abb2494d0db3d71e4c942f5210786b619 (patch) | |
| tree | 0fa0b9bb0d41ed6dea6cffc07681d931431704e7 /src/window.c | |
| parent | 030cd69ff13d95f439ca0d13a03215fc45959789 (diff) | |
| parent | b21eabf6259ac5761aac04e68692384f2d23a5c3 (diff) | |
| download | emacs-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.c | 20 |
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 | ||
| 3266 | DEFUN ("special-display-p", Fspecial_display_p, Sspecial_display_p, 1, 1, 0, | 3266 | DEFUN ("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. |
| 3268 | If the value is t, a frame would be created for that buffer | 3268 | If the value is t, `display-buffer' or `pop-to-buffer' would create a |
| 3269 | using the default frame parameters. If the value is a list, | 3269 | special frame for that buffer using the default frame parameters. |
| 3270 | it is a list of frame parameters that would be used | 3270 | |
| 3271 | If the value is a list, it is a list of frame parameters that would be used | ||
| 3271 | to make a frame for that buffer. | 3272 | to make a frame for that buffer. |
| 3272 | The variables `special-display-buffer-names' | 3273 | The variables `special-display-buffer-names' |
| 3273 | and `special-display-regexps' control this. */) | 3274 | and `special-display-regexps' control this. */) |
| @@ -3301,7 +3302,9 @@ and `special-display-regexps' control this. */) | |||
| 3301 | } | 3302 | } |
| 3302 | 3303 | ||
| 3303 | DEFUN ("same-window-p", Fsame_window_p, Ssame_window_p, 1, 1, 0, | 3304 | DEFUN ("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. |
| 3306 | More precisely, if `display-buffer' or `pop-to-buffer' would display | ||
| 3307 | that buffer in the selected window rather than (as usual) in some other window. | ||
| 3305 | See `same-window-buffer-names' and `same-window-regexps'. */) | 3308 | See `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. |
| 6753 | Displaying a buffer whose name is in this list makes a special frame for it | 6756 | Displaying a buffer with `display-buffer' or `pop-to-buffer', |
| 6757 | if its name is in this list, makes a special frame for it | ||
| 6754 | using `special-display-function'. See also `special-display-regexps'. | 6758 | using `special-display-function'. See also `special-display-regexps'. |
| 6755 | 6759 | ||
| 6756 | An element of the list can be a list instead of just a string. | 6760 | An 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. |
| 6778 | If a buffer name matches one of these regexps, it gets its own frame. | 6782 | When displaying a buffer with `display-buffer' or `pop-to-buffer', |
| 6779 | Displaying a buffer whose name is in this list makes a special frame for it | 6783 | if any regexp in this list matches the buffer name, it makes a |
| 6780 | using `special-display-function'. | 6784 | special frame for the buffer by calling `special-display-function'. |
| 6781 | 6785 | ||
| 6782 | An element of the list can be a list instead of just a string. | 6786 | An element of the list can be a list instead of just a string. |
| 6783 | There are two ways to use a list as an element: | 6787 | There are two ways to use a list as an element: |