diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2010-01-14 19:59:31 +0100 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2010-01-14 19:59:31 +0100 |
commit | d1f18ec0920105223d2aecfd838f8b19921e6340 (patch) | |
tree | f98090d895340248c119119406b69974d19cf499 /lisp/window.el | |
parent | 80cd4bb402cd55d9a7efcdf7a77e83cf1118eb61 (diff) | |
download | emacs-d1f18ec0920105223d2aecfd838f8b19921e6340.tar.gz |
Fix typos in docstrings.
Diffstat (limited to 'lisp/window.el')
-rw-r--r-- | lisp/window.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/window.el b/lisp/window.el index ac4203a7991..41a5d17321f 100644 --- a/lisp/window.el +++ b/lisp/window.el @@ -77,9 +77,9 @@ WINDOW defaults to the selected window. The return value does not include the mode line or the header line, if any. If a line at the bottom of the window is only -partially visible, that line is included in the return value. If -you do not want to include a partially visible bottom line in the -return value, use `window-text-height' instead." +partially visible, that line is included in the return value. +If you do not want to include a partially visible bottom line +in the return value, use `window-text-height' instead." (or window (setq window (selected-window))) (if (window-minibuffer-p window) (window-height window) @@ -785,7 +785,7 @@ selected rather than \(as usual\) some other window. See (defcustom pop-up-frames nil "Whether `display-buffer' should make a separate frame. -If nil, never make a seperate frame. +If nil, never make a separate frame. If the value is `graphic-only', make a separate frame on graphic displays only. Any other non-nil value means always make a separate frame." @@ -1006,7 +1006,7 @@ is higher than WINDOW." (not (eq window (selected-window))) ;; Don't resize minibuffer windows. (not (window-minibuffer-p (selected-window))) - (> (window-height (selected-window)) (window-height window)) + (> (window-height (selected-window)) (window-height window)) (eq (window-frame window) (window-frame (selected-window))) (let ((sel-edges (window-edges (selected-window))) (win-edges (window-edges window))) |