diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2012-09-26 16:11:18 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2012-09-26 16:11:18 +0200 |
commit | 42019c2e0c40c467250e7d73bed446b2bb19f287 (patch) | |
tree | 1bf5b8817902f42522c23f5fc893fa2863a93974 /lisp/window.el | |
parent | fb39b937b0628f4592b07d0aa61a41cf696abd30 (diff) | |
download | emacs-42019c2e0c40c467250e7d73bed446b2bb19f287.tar.gz |
lisp/window.el (temp-buffer-window-setup): Fix typo in docstring.
Diffstat (limited to 'lisp/window.el')
-rw-r--r-- | lisp/window.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/window.el b/lisp/window.el index 68f1370e9d1..b978eacc0be 100644 --- a/lisp/window.el +++ b/lisp/window.el @@ -84,7 +84,7 @@ This hook is run by `with-temp-buffer-window' with the buffer displayed and current and its window selected.") (defun temp-buffer-window-setup (buffer-or-name) - "Set up temporary buffer specified by BUFFER-OR-NAME + "Set up temporary buffer specified by BUFFER-OR-NAME. Return the buffer." (let ((old-dir default-directory) (buffer (get-buffer-create buffer-or-name))) @@ -903,7 +903,7 @@ of all windows on FRAME to nil." (if right (throw 'reset t) (setq right t))) ((eq side 'bottom) (if bottom (throw 'reset t) (setq bottom t))) - (t + (t (throw 'reset t)))) frame t)) ;; If there's a side window, there must be at least one |