* lisp/window.el (window--display-buffer): Consult WINDOW's
'window-side' parameter in order to find out whether it is a
side window (Bug#76911).
(cherry picked from commit
fd4de89460e20a1bbe0229f2e8c125f9f33bb088)
;; Don't dedicate WINDOW if it is dedicated because it shows
;; BUFFER already or it is reused and is not a side window.
((or (window-dedicated-p window)
- (and (eq type 'reuse) (not (eq (cdr alist-dedicated) 'side)))))
+ (and (eq type 'reuse)
+ (not (window-parameter window 'window-side)))))
;; Otherwise, if ALIST contains a 'dedicated' entry, use that
;; entry's value (which may be nil).
(alist-dedicated