diff options
| author | Martin Rudalics | 2011-11-20 11:57:04 +0100 |
|---|---|---|
| committer | Martin Rudalics | 2011-11-20 11:57:04 +0100 |
| commit | d2999b1a52779f1df2e32a7190ae3200eb85233d (patch) | |
| tree | ff535788feef71973b5b0e41cb18a7bd92f5a973 /src/window.c | |
| parent | f6cba7e0851e534ea71c276dfd13c4062bc84407 (diff) | |
| download | emacs-d2999b1a52779f1df2e32a7190ae3200eb85233d.tar.gz emacs-d2999b1a52779f1df2e32a7190ae3200eb85233d.zip | |
Remove term "status" with "window combination limits".
* window.c (Fset_window_combination_limit): Rename argument
STATUS to LIMIT.
(Vwindow_combination_limit): Remove "status" from doc-string.
* windows.texi (Resizing Windows, Splitting Windows): Remove
term "status" when talking about combination limits.
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/window.c b/src/window.c index 776f097b59e..4a5dcd85631 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -476,16 +476,16 @@ WINDOW are never \(re-)combined with WINDOW's siblings. */) | |||
| 476 | } | 476 | } |
| 477 | 477 | ||
| 478 | DEFUN ("set-window-combination-limit", Fset_window_combination_limit, Sset_window_combination_limit, 2, 2, 0, | 478 | DEFUN ("set-window-combination-limit", Fset_window_combination_limit, Sset_window_combination_limit, 2, 2, 0, |
| 479 | doc: /* Set combination limit of window WINDOW to STATUS; return STATUS. | 479 | doc: /* Set combination limit of window WINDOW to LIMIT; return LIMIT. |
| 480 | If STATUS is nil, child windows of WINDOW can be recombined with | 480 | If LIMIT is nil, child windows of WINDOW can be recombined with |
| 481 | WINDOW's siblings. STATUS t means that child windows of WINDOW are | 481 | WINDOW's siblings. LIMIT t means that child windows of WINDOW are |
| 482 | never \(re-)combined with WINDOW's siblings. Other values are reserved | 482 | never \(re-)combined with WINDOW's siblings. Other values are reserved |
| 483 | for future use. */) | 483 | for future use. */) |
| 484 | (Lisp_Object window, Lisp_Object status) | 484 | (Lisp_Object window, Lisp_Object limit) |
| 485 | { | 485 | { |
| 486 | register struct window *w = decode_any_window (window); | 486 | register struct window *w = decode_any_window (window); |
| 487 | 487 | ||
| 488 | w->combination_limit = status; | 488 | w->combination_limit = limit; |
| 489 | 489 | ||
| 490 | return w->combination_limit; | 490 | return w->combination_limit; |
| 491 | } | 491 | } |
| @@ -6532,10 +6532,10 @@ sibling. | |||
| 6532 | 6532 | ||
| 6533 | Other values are reserved for future use. | 6533 | Other values are reserved for future use. |
| 6534 | 6534 | ||
| 6535 | The value of this variable is also assigned to the combination-limit | 6535 | The value of this variable is also assigned to the combination limit of |
| 6536 | status of the new parent window. The combination-limit status of a | 6536 | the new parent window. The combination limit of a window can be |
| 6537 | window can be retrieved via the function `window-combination-limit' and | 6537 | retrieved via the function `window-combination-limit' and altered by the |
| 6538 | altered by the function `set-window-combination-limit'. */); | 6538 | function `set-window-combination-limit'. */); |
| 6539 | Vwindow_combination_limit = Qnil; | 6539 | Vwindow_combination_limit = Qnil; |
| 6540 | 6540 | ||
| 6541 | defsubr (&Sselected_window); | 6541 | defsubr (&Sselected_window); |