# HG changeset patch # User Bram Moolenaar # Date 1663446603 -7200 # Node ID 84ab2b07d5f82dae5ee6bea0b86a5b4c24c27b7d # Parent 508bafa1aff0908cf43f307acba9a6bd6b5c78a4 patch 9.0.0492: cmdwin test fails on MS-Windows Commit: https://github.com/vim/vim/commit/312af65d1ac763c060cb5adfcf8ae5beeec97f59 Author: Bram Moolenaar Date: Sat Sep 17 21:20:42 2022 +0100 patch 9.0.0492: cmdwin test fails on MS-Windows Problem: Cmdwin test fails on MS-Windows. Solution: Skip test on MS-Windows. diff --git a/src/testdir/test_cmdwin.vim b/src/testdir/test_cmdwin.vim --- a/src/testdir/test_cmdwin.vim +++ b/src/testdir/test_cmdwin.vim @@ -380,6 +380,9 @@ endfunc " This was using a pointer to a freed buffer func Test_cmdwin_freed_buffer_ptr() + " this does not work on MS-Windows because renaming an open file fails + CheckNotMSWindows + au BufEnter * next 0| file edit 0 silent! norm q/ diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -700,6 +700,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 492, +/**/ 491, /**/ 490,