summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2008-09-18 18:57:10 +0000
committerBram Moolenaar <Bram@vim.org>2008-09-18 18:57:10 +0000
commit806875ddb541c72263ea3350fb643ce07fb9036b (patch)
treef757c6af3f7ba6bf11c14766f53d4a941b133aa6 /src/main.c
parentca9f9581145ea5bdc3016147802ddeb8c8f8d5ce (diff)
downloadvim-git-806875ddb541c72263ea3350fb643ce07fb9036b.tar.gz
updated for version 7.2-020v7.2.020
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index a9eb4609c..0fc59412c 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