From d14c12484767429b7e8906a41a77c9c103d50283 Mon Sep 17 00:00:00 2001 From: Scott Prager Date: Sat, 25 Oct 2014 14:50:33 -0400 Subject: [PATCH] vim-patch:7.4.433 Problem: Test 75 fails on MS-Windows. Solution: Use ":normal" instead of feedkeys(). (Michael Soyka) https://code.google.com/p/vim/source/detail?r=v7-4-433 --- src/nvim/testdir/test75.in | 8 ++++---- src/nvim/version.c | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/nvim/testdir/test75.in b/src/nvim/testdir/test75.in index b7f2783f54..8fabccdf52 100644 --- a/src/nvim/testdir/test75.in +++ b/src/nvim/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/nvim/version.c b/src/nvim/version.c index 467cc01c42..4b3c93832a 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -229,7 +229,7 @@ static int included_patches[] = { 436, //435, //434, - //433, + 433, //432 NA //431 NA //430,