diff options
author | Daniel Carl <danielcarl@gmx.de> | 2014-07-14 22:22:27 +0200 |
---|---|---|
committer | Daniel Carl <danielcarl@gmx.de> | 2014-07-14 22:22:27 +0200 |
commit | fece73677081f5dbc01b7e87ec656f6fc6351a0b (patch) | |
tree | b3d06fc8e97c381268ced4c92e9d7c99f4e793a1 /src/normal.c | |
parent | cb8dd5480429caadebba2da5973a0831b079c44c (diff) |
Don't allow to quit vimb if there are running downloads.
Added :quit! to force quit even when there are still running downloads.
Diffstat (limited to 'src/normal.c')
-rw-r--r-- | src/normal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/normal.c b/src/normal.c index 7ea484e..540f58e 100644 --- a/src/normal.c +++ b/src/normal.c @@ -637,7 +637,7 @@ static VbResult normal_queue(const NormalCmdInfo *info) static VbResult normal_quit(const NormalCmdInfo *info) { - vb_quit(); + vb_quit(false); return RESULT_COMPLETE; } |