projects
/
vimb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c377ac8
)
Fixed compile error when queue feature is disabled.
author
Daniel Carl
<danielcarl@gmx.de>
Mon, 5 Jan 2015 22:50:13 +0000
(23:50 +0100)
committer
Daniel Carl
<danielcarl@gmx.de>
Mon, 5 Jan 2015 22:50:13 +0000
(23:50 +0100)
src/normal.c
patch
|
blob
|
history
diff --git
a/src/normal.c
b/src/normal.c
index
10236c7
..
fa9ddfd
100644
(file)
--- a/
src/normal.c
+++ b/
src/normal.c
@@
-630,7
+630,9
@@
static VbResult normal_prevnext(const NormalCmdInfo *info)
static VbResult normal_queue(const NormalCmdInfo *info)
{
+#ifdef FEATURE_QUEUE
command_queue(&((Arg){COMMAND_QUEUE_POP}));
+#endif
return RESULT_COMPLETE;
}