aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
authorMartin Rudalics2011-11-20 11:57:04 +0100
committerMartin Rudalics2011-11-20 11:57:04 +0100
commitd2999b1a52779f1df2e32a7190ae3200eb85233d (patch)
treeff535788feef71973b5b0e41cb18a7bd92f5a973 /src/window.c
parentf6cba7e0851e534ea71c276dfd13c4062bc84407 (diff)
downloademacs-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.c18
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
478DEFUN ("set-window-combination-limit", Fset_window_combination_limit, Sset_window_combination_limit, 2, 2, 0, 478DEFUN ("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.
480If STATUS is nil, child windows of WINDOW can be recombined with 480If LIMIT is nil, child windows of WINDOW can be recombined with
481WINDOW's siblings. STATUS t means that child windows of WINDOW are 481WINDOW's siblings. LIMIT t means that child windows of WINDOW are
482never \(re-)combined with WINDOW's siblings. Other values are reserved 482never \(re-)combined with WINDOW's siblings. Other values are reserved
483for future use. */) 483for 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
6533Other values are reserved for future use. 6533Other values are reserved for future use.
6534 6534
6535The value of this variable is also assigned to the combination-limit 6535The value of this variable is also assigned to the combination limit of
6536status of the new parent window. The combination-limit status of a 6536the new parent window. The combination limit of a window can be
6537window can be retrieved via the function `window-combination-limit' and 6537retrieved via the function `window-combination-limit' and altered by the
6538altered by the function `set-window-combination-limit'. */); 6538function `set-window-combination-limit'. */);
6539 Vwindow_combination_limit = Qnil; 6539 Vwindow_combination_limit = Qnil;
6540 6540
6541 defsubr (&Sselected_window); 6541 defsubr (&Sselected_window);