Skip to content

Commit 6231cb8

Browse files
committed
patch 7.4.1790
Problem: Leading white space in a job command matters. (Andrew Stewart) Solution: Skip leading white space.
1 parent 437905c commit 6231cb8

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/os_unix.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3940,7 +3940,7 @@ mch_parse_cmd(char_u *cmd, int use_shcf, char ***argv, int *argc)
39403940
*/
39413941
for (i = 0; i < 2; ++i)
39423942
{
3943-
p = cmd;
3943+
p = skipwhite(cmd);
39443944
inquote = FALSE;
39453945
*argc = 0;
39463946
for (;;)

src/version.c

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

754754
static int included_patches[] =
755755
{ /* Add new patch number below this line */
756+
/**/
757+
1790,
756758
/**/
757759
1789,
758760
/**/

0 commit comments

Comments
 (0)