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
index 3c8a938..ee49081 100644
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    894,
+/**/
     893,
 /**/
     892,
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.