diff options
| author | Richard M. Stallman | 1996-09-26 03:43:31 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-09-26 03:43:31 +0000 |
| commit | 524580a4ac7eff2a803cfce88a657fa67789ec52 (patch) | |
| tree | 267ad63137ff1c86ed38202c21d67e4ef6a97bea /src/window.c | |
| parent | 99487ce4c15db5f4032ef1e4fb646241327607d8 (diff) | |
| download | emacs-524580a4ac7eff2a803cfce88a657fa67789ec52.tar.gz emacs-524580a4ac7eff2a803cfce88a657fa67789ec52.zip | |
(syms_of_window): Doc fixes.
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/src/window.c b/src/window.c index 8a166c06106..d280b739d92 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -3468,14 +3468,15 @@ where `pop-up-frame-alist' would hold the default frame parameters."); | |||
| 3468 | DEFVAR_LISP ("special-display-buffer-names", &Vspecial_display_buffer_names, | 3468 | DEFVAR_LISP ("special-display-buffer-names", &Vspecial_display_buffer_names, |
| 3469 | "*List of buffer names that should have their own special frames.\n\ | 3469 | "*List of buffer names that should have their own special frames.\n\ |
| 3470 | Displaying a buffer whose name is in this list makes a special frame for it\n\ | 3470 | Displaying a buffer whose name is in this list makes a special frame for it\n\ |
| 3471 | using `special-display-function'.\n\ | 3471 | using `special-display-function'. See also `special-display-regexps'.\n\ |
| 3472 | \n\ | 3472 | \n\ |
| 3473 | An element of the list can be a cons cell instead of just a string.\n\ | 3473 | An element of the list can be a list instead of just a string.\n\ |
| 3474 | Then the car should be a buffer name, and the cdr specifies frame\n\ | 3474 | There are two ways to use a list as an element:\n\ |
| 3475 | parameters for creating the frame for that buffer.\n\ | 3475 | (BUFFER FRAME-PARAMETERS...) (BUFFER FUNCTION OTHER-ARGS...)\n\ |
| 3476 | More precisely, the cdr is passed as the second argument to\n\ | 3476 | In the first case, FRAME-PARAMETERS are used to create the frame.\n\ |
| 3477 | the function found in `special-display-function', when making that frame.\n\ | 3477 | In the latter case, FUNCTION is called with BUFFER as the first argument,\n\ |
| 3478 | See also `special-display-regexps'."); | 3478 | followed by OTHER-ARGS--it can display BUFFER in any way it likes.\n\ |
| 3479 | All this is done by the function found in `special-display-function'."); | ||
| 3479 | Vspecial_display_buffer_names = Qnil; | 3480 | Vspecial_display_buffer_names = Qnil; |
| 3480 | 3481 | ||
| 3481 | DEFVAR_LISP ("special-display-regexps", &Vspecial_display_regexps, | 3482 | DEFVAR_LISP ("special-display-regexps", &Vspecial_display_regexps, |
| @@ -3484,12 +3485,13 @@ If a buffer name matches one of these regexps, it gets its own frame.\n\ | |||
| 3484 | Displaying a buffer whose name is in this list makes a special frame for it\n\ | 3485 | Displaying a buffer whose name is in this list makes a special frame for it\n\ |
| 3485 | using `special-display-function'.\n\ | 3486 | using `special-display-function'.\n\ |
| 3486 | \n\ | 3487 | \n\ |
| 3487 | An element of the list can be a cons cell instead of just a string.\n\ | 3488 | An element of the list can be a list instead of just a string.\n\ |
| 3488 | Then the car should be the regexp, and the cdr specifies frame\n\ | 3489 | There are two ways to use a list as an element:\n\ |
| 3489 | parameters for creating the frame for buffers that match.\n\ | 3490 | (REGEXP FRAME-PARAMETERS...) (REGEXP FUNCTION OTHER-ARGS...)\n\ |
| 3490 | More precisely, the cdr is passed as the second argument to\n\ | 3491 | In the first case, FRAME-PARAMETERS are used to create the frame.\n\ |
| 3491 | the function found in `special-display-function', when making that frame.\n\ | 3492 | In the latter case, FUNCTION is called with the buffer as first argument,\n\ |
| 3492 | See also `special-display-buffer-names'."); | 3493 | followed by OTHER-ARGS--it can display the buffer in any way it likes.\n\ |
| 3494 | All this is done by the function found in `special-display-function'."); | ||
| 3493 | Vspecial_display_regexps = Qnil; | 3495 | Vspecial_display_regexps = Qnil; |
| 3494 | 3496 | ||
| 3495 | DEFVAR_LISP ("special-display-function", &Vspecial_display_function, | 3497 | DEFVAR_LISP ("special-display-function", &Vspecial_display_function, |