aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2004-10-16 14:51:39 +0000
committerRichard M. Stallman2004-10-16 14:51:39 +0000
commitd99b4859a0b850c423fe535c50e3267769566293 (patch)
tree9b9d08cda731d1eacb1222dc5a29040a7fe481f5 /src
parent3c3202f0ceccc6be101c797d7e04f78f58213686 (diff)
downloademacs-d99b4859a0b850c423fe535c50e3267769566293.tar.gz
emacs-d99b4859a0b850c423fe535c50e3267769566293.zip
(Fspecial_display_p): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/window.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/window.c b/src/window.c
index 11dabdaf964..5a1f1bab7ca 100644
--- a/src/window.c
+++ b/src/window.c
@@ -3214,10 +3214,13 @@ display_buffer_1 (window)
3214} 3214}
3215 3215
3216DEFUN ("special-display-p", Fspecial_display_p, Sspecial_display_p, 1, 1, 0, 3216DEFUN ("special-display-p", Fspecial_display_p, Sspecial_display_p, 1, 1, 0,
3217 doc: /* Returns non-nil if a buffer named BUFFER-NAME would be created specially. 3217 doc: /* Returns non-nil if a buffer named BUFFER-NAME gets a special frame.
3218The value is actually t if the frame should be called with default frame 3218If the value is t, a frame would be created for that buffer
3219parameters, and a list of frame parameters if they were specified. 3219using the default frame parameters. If the value is a list,
3220See `special-display-buffer-names', and `special-display-regexps'. */) 3220it is a list of frame parameters that would be used
3221to make a frame for that buffer.
3222The variables `special-display-buffer-names'
3223and `special-display-regexps' control this. */)
3221 (buffer_name) 3224 (buffer_name)
3222 Lisp_Object buffer_name; 3225 Lisp_Object buffer_name;
3223{ 3226{