summaryrefslogtreecommitdiff
path: root/src/normal.c
diff options
context:
space:
mode:
authorDaniel Carl <danielcarl@gmx.de>2014-07-14 22:22:27 +0200
committerDaniel Carl <danielcarl@gmx.de>2014-07-14 22:22:27 +0200
commitfece73677081f5dbc01b7e87ec656f6fc6351a0b (patch)
treeb3d06fc8e97c381268ced4c92e9d7c99f4e793a1 /src/normal.c
parentcb8dd5480429caadebba2da5973a0831b079c44c (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.c2
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;
}