diff options
| author | Martin Rudalics | 2016-12-01 10:51:11 +0100 |
|---|---|---|
| committer | Martin Rudalics | 2016-12-01 10:51:11 +0100 |
| commit | d31298d8afa8166346fbc9206f38ec4b09a12204 (patch) | |
| tree | 24c8fde9066ad26d53cbb4169a238e0be18389d4 | |
| parent | 2086f4c0c6ecf8b94173c97162ae1b09749eabb5 (diff) | |
| download | emacs-d31298d8afa8166346fbc9206f38ec4b09a12204.tar.gz emacs-d31298d8afa8166346fbc9206f38ec4b09a12204.zip | |
Fix documentation of `window-combination-resize'
* src/window.c (Vwindow_combination_resize): Fix doc-string.
* doc/lispref/windows.texi (Recombining Windows): Fix
documentation of `window-combination-resize'.
| -rw-r--r-- | doc/lispref/windows.texi | 6 | ||||
| -rw-r--r-- | src/window.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/doc/lispref/windows.texi b/doc/lispref/windows.texi index a9965a116c3..042e0cc35b6 100644 --- a/doc/lispref/windows.texi +++ b/doc/lispref/windows.texi | |||
| @@ -1602,9 +1602,9 @@ window or too small to ordinarily split. Furthermore, subsequently | |||
| 1602 | resizing or deleting @var{window} may resize all other windows in its | 1602 | resizing or deleting @var{window} may resize all other windows in its |
| 1603 | combination. | 1603 | combination. |
| 1604 | 1604 | ||
| 1605 | The default is @code{nil}. Other values are reserved for future use. | 1605 | The default is @code{nil}. Other values are reserved for future use. A |
| 1606 | The value of this variable is ignored when | 1606 | specific split operation may ignore the value of this variable if it is |
| 1607 | @code{window-combination-limit} is non-@code{nil}. | 1607 | affected by a non-@code{nil} value of @code{window-combination-limit}. |
| 1608 | @end defopt | 1608 | @end defopt |
| 1609 | 1609 | ||
| 1610 | To illustrate the effect of @code{window-combination-resize}, consider | 1610 | To illustrate the effect of @code{window-combination-resize}, consider |
diff --git a/src/window.c b/src/window.c index 733cf75d132..8d86f7f0815 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -7269,8 +7269,8 @@ same combination. | |||
| 7269 | 7269 | ||
| 7270 | Other values are reserved for future use. | 7270 | Other values are reserved for future use. |
| 7271 | 7271 | ||
| 7272 | This variable takes no effect if the variable `window-combination-limit' is | 7272 | A specific split operation may ignore the value of this variable if it |
| 7273 | non-nil. */); | 7273 | is affected by a non-nil value of `window-combination-limit'. */); |
| 7274 | Vwindow_combination_resize = Qnil; | 7274 | Vwindow_combination_resize = Qnil; |
| 7275 | 7275 | ||
| 7276 | DEFVAR_LISP ("window-combination-limit", Vwindow_combination_limit, | 7276 | DEFVAR_LISP ("window-combination-limit", Vwindow_combination_limit, |