]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 9.1.0169: current window number returned by tabpagewinnr may be outdated v9.1.0169
authorSean Dewar <6256228+seandewar@users.noreply.github.com>
Tue, 12 Mar 2024 19:42:25 +0000 (20:42 +0100)
committerChristian Brabandt <cb@256bit.org>
Tue, 12 Mar 2024 19:42:25 +0000 (20:42 +0100)
Problem:  current window number returned by tabpagewinnr may be outdated
          when called from win_execute for the original tabpage.
Solution: update the original tabpage's tp_curwin in switch_win; use
          {un}use_tabpage instead. Don't do it in restore_win to ensure
          tp_curwin of the temporarily visited tabpage is unchanged from
          switch_win visiting it, as before. (Sean Dewar)

Maybe restore_win should only restore tp_curwin if
`curtab == switchwin->sw_curtab`, in case the user changed tabpages from within
win_execute, but not doing that is consistent with the old behaviour.

related: #14186

Signed-off-by: Sean Dewar <6256228+seandewar@users.noreply.github.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
src/evalwindow.c
src/testdir/test_execute_func.vim
src/version.c

index f9b1c12961f2cd9acda3a675e997790f17a04879..cb813a6f4367b6f7b9c075d2370a5e8de9975d67 100644 (file)
@@ -1351,13 +1351,8 @@ switch_win_noblock(
        switchwin->sw_curtab = curtab;
        if (no_display)
        {
-           curtab->tp_firstwin = firstwin;
-           curtab->tp_lastwin = lastwin;
-           curtab->tp_topframe = topframe;
-           curtab = tp;
-           firstwin = curtab->tp_firstwin;
-           lastwin = curtab->tp_lastwin;
-           topframe = curtab->tp_topframe;
+           unuse_tabpage(curtab);
+           use_tabpage(tp);
        }
        else
            goto_tabpage_tp(tp, FALSE, FALSE);
@@ -1395,13 +1390,12 @@ restore_win_noblock(
     {
        if (no_display)
        {
-           curtab->tp_firstwin = firstwin;
-           curtab->tp_lastwin = lastwin;
-           curtab->tp_topframe = topframe;
-           curtab = switchwin->sw_curtab;
-           firstwin = curtab->tp_firstwin;
-           lastwin = curtab->tp_lastwin;
-           topframe = curtab->tp_topframe;
+           win_T       *old_tp_curwin = curtab->tp_curwin;
+
+           unuse_tabpage(curtab);
+           // Don't change the curwin of the tabpage we temporarily visited.
+           curtab->tp_curwin = old_tp_curwin;
+           use_tabpage(switchwin->sw_curtab);
        }
        else
            goto_tabpage_tp(switchwin->sw_curtab, FALSE, FALSE);
index 09b976bac0705184331ac560e64875a90895e21e..faaace09a02cf8c8cbe7f0f62f042357e57cdf50 100644 (file)
@@ -204,4 +204,28 @@ func Test_execute_func_with_null()
   endif
 endfunc
 
+func Test_win_execute_tabpagewinnr()
+  belowright split
+  tab split
+  belowright split
+  call assert_equal(2, tabpagewinnr(1))
+
+  tabprevious
+  wincmd p
+  call assert_equal(1, tabpagenr())
+  call assert_equal(1, tabpagewinnr(1))
+  call assert_equal(2, tabpagewinnr(2))
+
+  call win_execute(win_getid(1, 2),
+        \      'call assert_equal(2, tabpagenr())'
+        \ .. '| call assert_equal(1, tabpagewinnr(1))'
+        \ .. '| call assert_equal(1, tabpagewinnr(2))')
+
+  call assert_equal(1, tabpagenr())
+  call assert_equal(1, tabpagewinnr(1))
+  call assert_equal(2, tabpagewinnr(2))
+
+  %bwipe!
+endfunc
+
 " vim: shiftwidth=2 sts=2 expandtab
index 55c9c9fdfa35549cb97a6d74a8eeae2829a608bb..fa4d6dc29c9950672885514171666a53d7012c95 100644 (file)
@@ -704,6 +704,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    169,
 /**/
     168,
 /**/