From: Bram Moolenaar Date: Thu, 18 Sep 2008 18:57:10 +0000 (+0000) Subject: updated for version 7.2-020 X-Git-Tag: v7.2.020 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=806875ddb541c72263ea3350fb643ce07fb9036b;p=thirdparty%2Fvim.git updated for version 7.2-020 --- 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, /**/