From f59c73da1e8eb16e7b49b4465aedd1d6ddacc6fd Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 13 Oct 2015 17:52:59 +0200 Subject: patch 7.4.894 Problem: vimrun.exe is picky about the number of spaces before -s. Solution: Skip all spaces. (Cam Sinclair) --- src/version.c | 2 ++ src/vimrun.c | 2 ++ 2 files changed, 4 insertions(+) (limited to 'src') diff --git a/src/version.c b/src/version.c index 3c8a9382a..ee4908109 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 894, /**/ 893, /**/ diff --git a/src/vimrun.c b/src/vimrun.c index c423e6cc5..0006479b0 100644 --- 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. -- cgit v1.2.3