diff options
| author | Juri Linkov | 2011-09-17 02:46:59 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2011-09-17 02:46:59 +0200 |
| commit | 8da11505d318e24db3cdb0447d46ce9ab0180af8 (patch) | |
| tree | fd845238b15d770607827be41a460e396fd22229 | |
| parent | a91adc7e1fcf51058881f8ef5c82c2f1fb1429c6 (diff) | |
| download | emacs-8da11505d318e24db3cdb0447d46ce9ab0180af8.tar.gz emacs-8da11505d318e24db3cdb0447d46ce9ab0180af8.zip | |
lisp/window.el (window-safe-min-height, window-safe-min-width): Fix typos.
Fixes: debbugs:9522
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/window.el | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a1b37b77dad..6fa59a31f5d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-09-17 Juri Linkov <juri@jurta.org> | ||
| 2 | |||
| 3 | * window.el (window-safe-min-height, window-safe-min-width): | ||
| 4 | Fix typos (followup to bug#9522). | ||
| 5 | |||
| 1 | 2011-09-17 Sven Joachim <svenjoac@gmx.de> | 6 | 2011-09-17 Sven Joachim <svenjoac@gmx.de> |
| 2 | 7 | ||
| 3 | * window.el (window-min-width, window-state-put): Fix typos (bug#9522). | 8 | * window.el (window-min-width, window-state-put): Fix typos (bug#9522). |
diff --git a/lisp/window.el b/lisp/window.el index ab0ac34fb1c..e0be98d5bd1 100644 --- a/lisp/window.el +++ b/lisp/window.el | |||
| @@ -158,7 +158,7 @@ An application may bind this to a non-nil value around calls to | |||
| 158 | these functions to inhibit processing of window parameters.") | 158 | these functions to inhibit processing of window parameters.") |
| 159 | 159 | ||
| 160 | (defconst window-safe-min-height 1 | 160 | (defconst window-safe-min-height 1 |
| 161 | "The absolut minimum number of lines of a window. | 161 | "The absolute minimum number of lines of a window. |
| 162 | Anything less might crash Emacs.") | 162 | Anything less might crash Emacs.") |
| 163 | 163 | ||
| 164 | (defcustom window-min-height 4 | 164 | (defcustom window-min-height 4 |
| @@ -177,7 +177,7 @@ shorter, explictly specify the SIZE argument of that function." | |||
| 177 | :group 'windows) | 177 | :group 'windows) |
| 178 | 178 | ||
| 179 | (defconst window-safe-min-width 2 | 179 | (defconst window-safe-min-width 2 |
| 180 | "The absolut minimum number of columns of a window. | 180 | "The absolute minimum number of columns of a window. |
| 181 | Anything less might crash Emacs.") | 181 | Anything less might crash Emacs.") |
| 182 | 182 | ||
| 183 | (defcustom window-min-width 10 | 183 | (defcustom window-min-width 10 |