diff --git a/src/main.c b/src/main.c index a9eb4609ca..0fc59412cd 100644 --- a/src/main.c +++ b/src/main.c @@ -1457,7 +1457,8 @@ parse_command_name(parmp) ++initstr; } - if (TOLOWER_ASC(initstr[0]) == 'g' || initstr[0] == 'k') + /* "gvim" starts the GUI. Also accept "Gvim" for MS-Windows. */ + if (TOLOWER_ASC(initstr[0]) == 'g') { main_start_gui(); #ifdef FEAT_GUI diff --git a/src/version.c b/src/version.c index 6b8444ce70..e842d4e8ca 100644 --- a/src/version.c +++ b/src/version.c @@ -676,6 +676,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 20, /**/ 19, /**/