Skip to content

Commit f59c73d

Browse files
committed
patch 7.4.894
Problem: vimrun.exe is picky about the number of spaces before -s. Solution: Skip all spaces. (Cam Sinclair)
1 parent d1b15de commit f59c73d

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -741,6 +741,8 @@ static char *(features[]) =
741741

742742
static int included_patches[] =
743743
{ /* Add new patch number below this line */
744+
/**/
745+
894,
744746
/**/
745747
893,
746748
/**/

src/vimrun.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ main(void)
7979
}
8080
++p;
8181
}
82+
while (*p == ' ')
83+
++p;
8284

8385
/*
8486
* "-s" argument: don't wait for a key hit.

0 commit comments

Comments
 (0)