diff options
| author | Martin Rudalics | 2008-10-19 15:12:48 +0000 |
|---|---|---|
| committer | Martin Rudalics | 2008-10-19 15:12:48 +0000 |
| commit | 5d8dda33f07916ba48d65385dc13b817e9bcf359 (patch) | |
| tree | d719ae8c75de0055710378a86de5615d4e46f660 | |
| parent | 086a7dd476693b1167df3d5b88fa34dc5b237f5b (diff) | |
| download | emacs-5d8dda33f07916ba48d65385dc13b817e9bcf359.tar.gz emacs-5d8dda33f07916ba48d65385dc13b817e9bcf359.zip | |
(Resizing Windows): Remove var{} around window in
documentation of enlarge-window.
Rewrite documentation of window-min-height and window-min-width.
| -rw-r--r-- | doc/lispref/ChangeLog | 6 | ||||
| -rw-r--r-- | doc/lispref/windows.texi | 23 |
2 files changed, 17 insertions, 12 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index ffb7b48cb4c..7e107a0532c 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2008-10-19 Martin Rudalics <rudalics@gmx.at> | ||
| 2 | |||
| 3 | * windows.texi (Resizing Windows): Remove var{} around "window" in | ||
| 4 | documentation of enlarge-window. | ||
| 5 | Rewrite documentation of window-min-height and window-min-width. | ||
| 6 | |||
| 1 | 2008-10-19 Eli Zaretskii <eliz@gnu.org> | 7 | 2008-10-19 Eli Zaretskii <eliz@gnu.org> |
| 2 | 8 | ||
| 3 | * functions.texi (Calling Functions): Document `apply-partially'. | 9 | * functions.texi (Calling Functions): Document `apply-partially'. |
diff --git a/doc/lispref/windows.texi b/doc/lispref/windows.texi index 4316c1eaa55..38d21637b60 100644 --- a/doc/lispref/windows.texi +++ b/doc/lispref/windows.texi | |||
| @@ -2066,9 +2066,9 @@ window at a time until that window is used up, then takes from another. | |||
| 2066 | If a window from which lines are stolen shrinks below | 2066 | If a window from which lines are stolen shrinks below |
| 2067 | @code{window-min-height} lines, that window disappears. | 2067 | @code{window-min-height} lines, that window disappears. |
| 2068 | 2068 | ||
| 2069 | If @var{horizontal} is non-@code{nil}, this function makes | 2069 | If @var{horizontal} is non-@code{nil}, this function makes the window |
| 2070 | @var{window} wider by @var{size} columns, stealing columns instead of | 2070 | @var{size} columns wider, stealing columns instead of lines. If a |
| 2071 | lines. If a window from which columns are stolen shrinks below | 2071 | window from which columns are stolen shrinks below |
| 2072 | @code{window-min-width} columns, that window disappears. | 2072 | @code{window-min-width} columns, that window disappears. |
| 2073 | 2073 | ||
| 2074 | If the requested size would exceed that of the window's frame, then the | 2074 | If the requested size would exceed that of the window's frame, then the |
| @@ -2193,21 +2193,20 @@ functions to a minimum height and width. | |||
| 2193 | @defopt window-min-height | 2193 | @defopt window-min-height |
| 2194 | The value of this variable determines how short a window may become | 2194 | The value of this variable determines how short a window may become |
| 2195 | before it is automatically deleted. Making a window smaller than | 2195 | before it is automatically deleted. Making a window smaller than |
| 2196 | @code{window-min-height} automatically deletes it, and no window may | 2196 | @code{window-min-height} automatically deletes it, and no window may be |
| 2197 | be created shorter than this. The default value is 4. | 2197 | created shorter than this. The value is measured in line units. When |
| 2198 | 2198 | the window wants a mode- and/or header-line, they are counted as one | |
| 2199 | The absolute minimum window height is one; actions that change window | 2199 | line each. The default value of this variable is 4. A value less than |
| 2200 | sizes reset this variable to one if it is less than one. | 2200 | 1 is ignored. |
| 2201 | @end defopt | 2201 | @end defopt |
| 2202 | 2202 | ||
| 2203 | @defopt window-min-width | 2203 | @defopt window-min-width |
| 2204 | The value of this variable determines how narrow a window may become | 2204 | The value of this variable determines how narrow a window may become |
| 2205 | before it is automatically deleted. Making a window smaller than | 2205 | before it is automatically deleted. Making a window smaller than |
| 2206 | @code{window-min-width} automatically deletes it, and no window may be | 2206 | @code{window-min-width} automatically deletes it, and no window may be |
| 2207 | created narrower than this. The default value is 10. | 2207 | created narrower than this. The value is measured in characters and |
| 2208 | 2208 | includes any fringes or the scroll bar. The default value is 10. A | |
| 2209 | The absolute minimum window width is two; actions that change window | 2209 | value less than 2 is ignored. |
| 2210 | sizes reset this variable to two if it is less than two. | ||
| 2211 | @end defopt | 2210 | @end defopt |
| 2212 | 2211 | ||
| 2213 | @node Coordinates and Windows | 2212 | @node Coordinates and Windows |