diff --git a/src/gui_w32.c b/src/gui_w32.c index 400169a59c..a29fa91b0a 100644 --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -5384,13 +5384,11 @@ gui_mch_do_spawn(char_u *arg) { if (*p == L'"') { - while (*p && *p != L'"') - ++p; - if (*p) - ++p; + // Skip quoted strings + while (*++p && *p != L'"'); } - else - ++p; + + ++p; } cmd = p; } diff --git a/src/version.c b/src/version.c index c84709e500..b0dc438870 100644 --- a/src/version.c +++ b/src/version.c @@ -704,6 +704,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1379, /**/ 1378, /**/