1
0
forked from aniani/vim

patch 7.4.1790

Problem:    Leading white space in a job command matters. (Andrew Stewart)
Solution:   Skip leading white space.
This commit is contained in:
Bram Moolenaar
2016-04-26 19:42:42 +02:00
parent 437905c25d
commit 6231cb8b5b
2 changed files with 3 additions and 1 deletions

View File

@@ -3940,7 +3940,7 @@ mch_parse_cmd(char_u *cmd, int use_shcf, char ***argv, int *argc)
*/ */
for (i = 0; i < 2; ++i) for (i = 0; i < 2; ++i)
{ {
p = cmd; p = skipwhite(cmd);
inquote = FALSE; inquote = FALSE;
*argc = 0; *argc = 0;
for (;;) for (;;)

View File

@@ -753,6 +753,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
1790,
/**/ /**/
1789, 1789,
/**/ /**/