# HG changeset patch # User Christian Brabandt # Date 1461692705 -7200 # Node ID 149d976650a1f105c0660e53bd6d39b013072f9a # Parent 943b4fdcb1b1e3f439b10c1158fe8727002c308e commit https://github.com/vim/vim/commit/6231cb8b5b208becf088531816027001acc754e5 Author: Bram Moolenaar Date: Tue Apr 26 19:42:42 2016 +0200 patch 7.4.1790 Problem: Leading white space in a job command matters. (Andrew Stewart) Solution: Skip leading white space. diff --git a/src/os_unix.c b/src/os_unix.c --- a/src/os_unix.c +++ b/src/os_unix.c @@ -3940,7 +3940,7 @@ mch_parse_cmd(char_u *cmd, int use_shcf, */ for (i = 0; i < 2; ++i) { - p = cmd; + p = skipwhite(cmd); inquote = FALSE; *argc = 0; for (;;) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1790, +/**/ 1789, /**/ 1788,