diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-12-08 15:57:59 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-12-08 15:57:59 +0100 |
commit | f4120a8964851b03a8fee7e15944ba7ef0bcb5a6 (patch) | |
tree | 6c480c9c02d11fefb3b0f0b255ebded9649dc6a1 /src/main.c | |
parent | aeabe0545d5bcb6a89fad63078fb310f630b77fd (diff) | |
download | vim-git-f4120a8964851b03a8fee7e15944ba7ef0bcb5a6.tar.gz |
updated for version 7.3.369v7.3.369
Problem: When compiled with Gnome get an error message when using --help.
Solution: Don't fork. (Ivan Krasilnikov)
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c index 2044893df..d1702fe57 100644 --- a/src/main.c +++ b/src/main.c @@ -3294,7 +3294,10 @@ usage() #ifdef FEAT_GUI_GNOME /* Gnome gives extra messages for --help if we continue, but not for -h. */ if (gui.starting) + { mch_msg("\n"); + gui.dofork = FALSE; + } else #endif mch_exit(0); |