diff options
| author | Juri Linkov | 2018-11-08 00:20:16 +0200 |
|---|---|---|
| committer | Juri Linkov | 2018-11-08 00:20:16 +0200 |
| commit | 4254caa2d3bc2ebec6513fccce6a3d6303b068ef (patch) | |
| tree | 26f1eddb42b7eac27530d547fb9162ea4e368226 /doc/lispref | |
| parent | 811d9291fcfb12d87bad277d4e8b25152129d73d (diff) | |
| download | emacs-4254caa2d3bc2ebec6513fccce6a3d6303b068ef.tar.gz emacs-4254caa2d3bc2ebec6513fccce6a3d6303b068ef.zip | |
* lisp/window.el (window-state-put): Create a new window
to replace the existing one on the same frame in case
when WINDOW is not live. (Bug#32850)
* doc/lispref/windows.texi (Window Configurations):
Describe changes related to WINDOW arg of window-state-put.
Diffstat (limited to 'doc/lispref')
| -rw-r--r-- | doc/lispref/windows.texi | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/lispref/windows.texi b/doc/lispref/windows.texi index 772bcdf9a6c..9301fdfa9d6 100644 --- a/doc/lispref/windows.texi +++ b/doc/lispref/windows.texi | |||
| @@ -5706,9 +5706,10 @@ This function puts the window state @var{state} into @var{window}. | |||
| 5706 | The argument @var{state} should be the state of a window returned by | 5706 | The argument @var{state} should be the state of a window returned by |
| 5707 | an earlier invocation of @code{window-state-get}, see above. The | 5707 | an earlier invocation of @code{window-state-get}, see above. The |
| 5708 | optional argument @var{window} can be either a live window or an | 5708 | optional argument @var{window} can be either a live window or an |
| 5709 | internal window (@pxref{Windows and Frames}) and defaults to the | 5709 | internal window (@pxref{Windows and Frames}). If @var{window} is not |
| 5710 | selected one. If @var{window} is not live, it is replaced by a live | 5710 | a live window, it is replaced by a new live window created on the same |
| 5711 | window before putting @var{state} into it. | 5711 | frame before putting @var{state} into it. If @var{window} is @code{nil}, |
| 5712 | it puts the window state into a new window. | ||
| 5712 | 5713 | ||
| 5713 | If the optional argument @var{ignore} is non-@code{nil}, it means to ignore | 5714 | If the optional argument @var{ignore} is non-@code{nil}, it means to ignore |
| 5714 | minimum window sizes and fixed-size restrictions. If @var{ignore} | 5715 | minimum window sizes and fixed-size restrictions. If @var{ignore} |