# HG changeset patch # User Christian Brabandt # Date 1444752005 -7200 # Node ID fbec41e5651e87fa44b7b07d59359a14b2f9cead # Parent dd45266c153d23de76b21efa9c81bf21987776d3 commit https://github.com/vim/vim/commit/f59c73da1e8eb16e7b49b4465aedd1d6ddacc6fd Author: Bram Moolenaar Date: Tue Oct 13 17:52:59 2015 +0200 patch 7.4.894 Problem: vimrun.exe is picky about the number of spaces before -s. Solution: Skip all spaces. (Cam Sinclair) 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 */ /**/ + 894, +/**/ 893, /**/ 892, diff --git a/src/vimrun.c b/src/vimrun.c --- a/src/vimrun.c +++ b/src/vimrun.c @@ -79,6 +79,8 @@ main(void) } ++p; } + while (*p == ' ') + ++p; /* * "-s" argument: don't wait for a key hit.