Patch 8.2.4432 (after 8.2.4428)
Problem: Cannot use settabvar() while the cmdline window is open.
Solution: Only give an error when actually switching tabpage.
(closes #9813)
Files: src/window.c
*** ../vim-8.2.4431/src/window.c 2022-02-20 20:48:53.226071796 +0000
--- src/window.c 2022-02-21 16:10:06.227186632 +0000
***************
*** 4392,4398 ****
int trigger_enter_autocmds,
int trigger_leave_autocmds)
{
! CHECK_CMDWIN;
// Don't repeat a message in another tab page.
set_keep_msg(NULL, 0);
--- 4392,4399 ----
int trigger_enter_autocmds,
int trigger_leave_autocmds)
{
! if (trigger_enter_autocmds || trigger_leave_autocmds)
! CHECK_CMDWIN;
// Don't repeat a message in another tab page.
set_keep_msg(NULL, 0);
*** ../vim-8.2.4431/src/version.c 2022-02-21 15:59:07.571981059 +0000
--- src/version.c 2022-02-21 16:11:24.655078778 +0000
***************
*** 752,753 ****
--- 752,755 ----
{ /* Add new patch number below this line */
+ /**/
+ 4432,
/**/
--
>From "know your smileys":
;-0 Can't find shift key
,-9 Kann Umschalttaste nicht finden
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/20220221161638.E2D761C0FE0%40moolenaar.net.