# HG changeset patch # User Bram Moolenaar # Date 1661281202 -7200 # Node ID 8629106c49828228017358eea14b9bc31c83730d # Parent 38f88030a734710b39f49aa517812cba4c99d609 patch 9.0.0249: no test for what 9.0.0234 fixes Commit: https://github.com/vim/vim/commit/3a7ad904d27d904e57f7a22eb33872a587ae6673 Author: Bram Moolenaar Date: Tue Aug 23 19:54:27 2022 +0100 patch 9.0.0249: no test for what 9.0.0234 fixes Problem: No test for what 9.0.0234 fixes. Solution: Add a test. (issue https://github.com/vim/vim/issues/10950) 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 @@ -373,5 +373,12 @@ func Test_cmdwin_virtual_edit() set ve= cpo-=$ endfunc +" Check that a :normal command can be used to stop Visual mode without side +" effects. +func Test_normal_escape() + call feedkeys("q:i\" foo\:normal! \\\:\" bar\", 'ntx') + call assert_equal('" bar', @:) +endfunc + " vim: shiftwidth=2 sts=2 expandtab diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -732,6 +732,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 249, +/**/ 248, /**/ 247,