# HG changeset patch # User Bram Moolenaar # Date 1410263578 -7200 # Node ID dd3dac42cb9b5f95ad16d5e08220b0c7adf4b024 # Parent 31e565d5fcb189beb782d8a9e4c143de254ffa58 updated for version 7.4.433 Problem: Test 75 fails on MS-Windows. Solution: Use ":normal" instead of feedkeys(). (Michael Soyka) diff --git a/src/testdir/test75.in b/src/testdir/test75.in --- a/src/testdir/test75.in +++ b/src/testdir/test75.in @@ -23,16 +23,16 @@ STARTTEST Go:" :" Outside of the range, minimum :inoremap a -:call feedkeys("a\u1040\") +:execute "normal a\u1040\" :" Inside of the range, minimum :inoremap b -:call feedkeys("a\u103f\") +:execute "normal a\u103f\" :" Inside of the range, maximum :inoremap c -:call feedkeys("a\uf03f\") +:execute "normal a\uf03f\" :" Outside of the range, maximum :inoremap d -:call feedkeys("a\uf040\") +:execute "normal a\uf040\" :" :/^eof/+1,$w! test.out :qa! diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 433, +/**/ 432, /**/ 431,