From c8b956dc32af58a7ef55d9f40a442bec302be27f Mon Sep 17 00:00:00 2001 From: Martin Rudalics Date: Fri, 27 Mar 2026 23:35:24 +0100 Subject: [PATCH] ; Fix last fix to 'window--make-major-side-window' * lisp/window.el (window--make-major-side-window): Fix last fix which was broken by the committer. --- lisp/window.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/window.el b/lisp/window.el index be92a695b2b..bd0653fe0d4 100644 --- a/lisp/window.el +++ b/lisp/window.el @@ -1016,7 +1016,7 @@ and may be called only if no window on SIDE exists yet." ;; placed incorrectly (Bug#80665). (when-let* ((sibling (or (window-prev-sibling window) (window-next-sibling window))) - (window-child sibling)) + ((window-child sibling))) (set-window-combination-limit sibling t)) ;; Initialize `window-side' parameter of new window to SIDE and ;; make that parameter persistent.