From: Colin Walters Date: Sun, 24 Mar 2002 21:33:26 +0000 (+0000) Subject: (ibuffer): If the user has `ibuffer-use-other-window' non-nil, then X-Git-Tag: ttn-vms-21-2-B4~15987 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=34b8f593f367c2380dceed862a378e040ea19cc7;p=emacs.git (ibuffer): If the user has `ibuffer-use-other-window' non-nil, then always use another window. --- 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))