Mercurial > emacs
changeset 42868:589485c2358e
For window-min-height, the absolute minimum is 1.
For window-min-width, the absolute minimum is 2.
Minor cleanups.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 20 Jan 2002 23:20:45 +0000 |
parents | 68f16b55e041 |
children | bbac3e4c60f8 |
files | lispref/windows.texi |
diffstat | 1 files changed, 13 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/lispref/windows.texi Sun Jan 20 23:19:43 2002 +0000 +++ b/lispref/windows.texi Sun Jan 20 23:20:45 2002 +0000 @@ -170,7 +170,7 @@ signals an error and does not split the window at all. The following example starts with one window on a screen that is 50 -lines high by 80 columns wide; then the window is split. +lines high by 80 columns wide; then it splits the window. @smallexample @group @@ -212,7 +212,7 @@ @end group @end smallexample -Next, the top window is split horizontally: +Next, split the top window horizontally: @smallexample @group @@ -234,7 +234,7 @@ @end smallexample @need 3000 -Now, the screen looks like this: +Now the screen looks like this: @smallexample @group @@ -1881,25 +1881,27 @@ @end defvar @cindex minimum window size - The following two variables constrain the window-size-changing + The following two variables constrain the window-structure-changing functions to a minimum height and width. @defopt window-min-height The value of this variable determines how short a window may become before it is automatically deleted. Making a window smaller than -@code{window-min-height} automatically deletes it, and no window may be -created shorter than this. The absolute minimum height is two (allowing -one line for the mode line, and one line for the buffer display). -Actions that change window sizes reset this variable to two if it is -less than two. The default value is 4. +@code{window-min-height} automatically deletes it, and no window may +be created shorter than this. The default value is 4. + +The absolute minimum window height is one; actions that change window +sizes reset this variable to one if it is less than one. @end defopt @defopt window-min-width The value of this variable determines how narrow a window may become before it is automatically deleted. Making a window smaller than @code{window-min-width} automatically deletes it, and no window may be -created narrower than this. The absolute minimum width is one; any -value below that is ignored. The default value is 10. +created narrower than this. The default value is 10. + +The absolute minimum window width is two; actions that change window +sizes reset this variable to two if it is less than two. @end defopt @node Coordinates and Windows