0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

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)
{
p = cmd;
p = skipwhite(cmd);
inquote = FALSE;
*argc = 0;
for (;;)