From 7793db6a762112944ab05b1c03884632bd9d91cc Mon Sep 17 00:00:00 2001 From: Martin Rudalics Date: Wed, 22 Apr 2015 15:02:22 +0200 Subject: [PATCH] Fix last fix in `display-buffer-record-window'. * lisp/window.el (display-buffer-record-window): Fix last fix. --- lisp/window.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/window.el b/lisp/window.el index 07e477d7799..32467c393dd 100644 --- a/lisp/window.el +++ b/lisp/window.el @@ -5481,7 +5481,8 @@ element is BUFFER." (setcar quit-restore 'same) ;; The selected-window might have changed in ;; between (Bug#20353). - (unless (memq (selected-window) '(window (nth 2 quit-restore))) + (unless (or (eq window (selected-window)) + (eq window (nth 2 quit-restore))) (setcar (cddr quit-restore) (selected-window))))) ;; WINDOW shows another buffer. (with-current-buffer (window-buffer window) -- 2.39.5