commit | f59c73da1e8eb16e7b49b4465aedd1d6ddacc6fd | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Oct 13 17:52:59 2015 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Oct 13 17:52:59 2015 +0200 |
tree | 638a75bc6b723c23c9e0ac77bae1ee4c6e34b798 | |
parent | d1b15dec4d00d7ed5e92ff4e0fb7fc2e0818e479 [diff] [blame] |
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/vimrun.c b/src/vimrun.c index c423e6c..0006479 100644 --- a/src/vimrun.c +++ b/src/vimrun.c
@@ -79,6 +79,8 @@ } ++p; } + while (*p == ' ') + ++p; /* * "-s" argument: don't wait for a key hit.