diff options
author | Bram Moolenaar <Bram@vim.org> | 2008-09-18 18:57:10 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2008-09-18 18:57:10 +0000 |
commit | 806875ddb541c72263ea3350fb643ce07fb9036b (patch) | |
tree | f757c6af3f7ba6bf11c14766f53d4a941b133aa6 /src/main.c | |
parent | ca9f9581145ea5bdc3016147802ddeb8c8f8d5ce (diff) | |
download | vim-git-806875ddb541c72263ea3350fb643ce07fb9036b.tar.gz |
updated for version 7.2-020v7.2.020
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 3 |
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 |