From b4a5948d3330f7ca02c61075eed94b467645ea83 Mon Sep 17 00:00:00 2001 From: Juri Linkov Date: Thu, 22 Jan 2026 20:09:47 +0200 Subject: [PATCH] ; Remove "--" from the name of autoloaded 'window--get-split-combination' * lisp/window-x.el (window-get-split-combination, split-frame): * lisp/tab-bar.el (tab-bar-split-tab): Rename 'window--get-split-combination' to 'window-get-split-combination'. --- lisp/tab-bar.el | 2 +- lisp/window-x.el | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/tab-bar.el b/lisp/tab-bar.el index e40171f27a5..4cc090bca94 100644 --- a/lisp/tab-bar.el +++ b/lisp/tab-bar.el @@ -1992,7 +1992,7 @@ include TAB's selected window and delete those windows from TAB." (user-error "ARG %s exceeds number of windows %s that can be split off" (abs arg) (1- total-window-count))) (t - (let* ((comb (window--get-split-combination main arg)) + (let* ((comb (window-get-split-combination main arg)) (ws (window-state-get comb))) (delete-window comb) (tab-bar-new-tab) diff --git a/lisp/window-x.el b/lisp/window-x.el index a5740fc5d25..4197d5a0a26 100644 --- a/lisp/window-x.el +++ b/lisp/window-x.el @@ -341,7 +341,7 @@ FRAME1." frame1)) ;;;###autoload -(defun window--get-split-combination (window arg) +(defun window-get-split-combination (window arg) "Return window combination suitable for `split-frame'. WINDOW is the main window in which the combination should be derived. @@ -417,7 +417,7 @@ absolute value of ARG. Return the new frame." (user-error "ARG %s exceeds number of windows %s that can be split off" (abs arg) (1- total-window-count))) (t - (let ((comb (window--get-split-combination main arg))) + (let ((comb (window-get-split-combination main arg))) (window-state-put (window-state-get comb) (window-main-window (make-frame))) (delete-window comb))