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:
@@ -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 (;;)
|
||||||
|
@@ -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,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user