comparison src/window.c @ 83221:0fc4928cc48e

Merged in changes from CVS trunk. Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-616 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-617 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-618 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-619 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-620 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-621 Merge from gnus--rel--5.10 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-622 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-623 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-624 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-625 Update from CVS * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-51 Update from CVS * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-52 Update from CVS * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-53 Merge from emacs--cvs-trunk--0 git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-261
author Karoly Lorentey <lorentey@elte.hu>
date Tue, 19 Oct 2004 17:00:02 +0000
parents d83f49cefda3 22f6e207e697
children 7a0245dd1848
comparison
equal deleted inserted replaced
83220:fe1db7935e1a 83221:0fc4928cc48e
3214 3214
3215 return window; 3215 return window;
3216 } 3216 }
3217 3217
3218 DEFUN ("special-display-p", Fspecial_display_p, Sspecial_display_p, 1, 1, 0, 3218 DEFUN ("special-display-p", Fspecial_display_p, Sspecial_display_p, 1, 1, 0,
3219 doc: /* Returns non-nil if a buffer named BUFFER-NAME would be created specially. 3219 doc: /* Returns non-nil if a buffer named BUFFER-NAME gets a special frame.
3220 The value is actually t if the frame should be called with default frame 3220 If the value is t, a frame would be created for that buffer
3221 parameters, and a list of frame parameters if they were specified. 3221 using the default frame parameters. If the value is a list,
3222 See `special-display-buffer-names', and `special-display-regexps'. */) 3222 it is a list of frame parameters that would be used
3223 to make a frame for that buffer.
3224 The variables `special-display-buffer-names'
3225 and `special-display-regexps' control this. */)
3223 (buffer_name) 3226 (buffer_name)
3224 Lisp_Object buffer_name; 3227 Lisp_Object buffer_name;
3225 { 3228 {
3226 Lisp_Object tem; 3229 Lisp_Object tem;
3227 3230