summaryrefslogtreecommitdiff
path: root/lisp/ibuffer.el
diff options
context:
space:
mode:
authorColin Walters <walters@gnu.org>2002-03-24 21:33:26 +0000
committerColin Walters <walters@gnu.org>2002-03-24 21:33:26 +0000
commit34b8f593f367c2380dceed862a378e040ea19cc7 (patch)
tree0af92ba64780cd04c6f254448643956d73fe326e /lisp/ibuffer.el
parent34cf93c0a7558e405e9f92dfa0453f47465a6097 (diff)
downloademacs-34b8f593f367c2380dceed862a378e040ea19cc7.tar.gz
emacs-34b8f593f367c2380dceed862a378e040ea19cc7.tar.bz2
emacs-34b8f593f367c2380dceed862a378e040ea19cc7.zip
(ibuffer): If the user has `ibuffer-use-other-window' non-nil, then
always use another window.
Diffstat (limited to 'lisp/ibuffer.el')
-rw-r--r--lisp/ibuffer.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ibuffer.el b/lisp/ibuffer.el
index bee8701ef8c..441f0e02119 100644
--- a/lisp/ibuffer.el
+++ b/lisp/ibuffer.el
@@ -2014,7 +2014,7 @@ special value `onewindow' means always use another window."
(require 'ibuf-ext)
(when ibuffer-use-other-window
- (setq other-window-p (not other-window-p)))
+ (setq other-window-p t))
(let* ((buf (get-buffer-create (or name "*Ibuffer*")))
(already-in (eq (current-buffer) buf))
(need-update nil))