summaryrefslogtreecommitdiffstats
path: root/input/input.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-02-20 13:38:39 +0100
committerwm4 <wm4@nowhere>2014-03-11 00:14:30 +0100
commit89f20cd2f35ad25271ac91606ec459467d61a0ed (patch)
tree3dfa4e4d9da5c77997d5a1e1823b6e29d90bcf00 /input/input.c
parentcce2b675acaef005720faed63106f7d98da7253e (diff)
downloadmpv-89f20cd2f35ad25271ac91606ec459467d61a0ed.tar.bz2
mpv-89f20cd2f35ad25271ac91606ec459467d61a0ed.tar.xz
input: check for abort cmd in multi-commands
MP_CMD_COMMAND_LIST commands (used to implement key bindings with multiple commands) were not checked for abort commands. Implement it. Remove the remarks about multi-commands being special from the manpage. Seek coalescing is handled differently now, and the issue with abort commands is fixed with this commit.
Diffstat (limited to 'input/input.c')
-rw-r--r--input/input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/input/input.c b/input/input.c
index def7b77710..56c21b4fe1 100644
--- a/input/input.c
+++ b/input/input.c
@@ -237,7 +237,7 @@ static bool queue_has_abort_cmds(struct cmd_queue *queue)
{
bool ret = false;
for (struct mp_cmd *cmd = queue->first; cmd; cmd = cmd->queue_next)
- if (mp_input_is_abort_cmd(cmd->id)) {
+ if (mp_input_is_abort_cmd(cmd)) {
ret = true;
break;
}
@@ -580,7 +580,7 @@ static bool should_drop_cmd(struct input_ctx *ictx, struct mp_cmd *cmd)
{
struct cmd_queue *queue = &ictx->cmd_queue;
return (queue_count_cmds(queue) >= ictx->key_fifo_size &&
- (!mp_input_is_abort_cmd(cmd->id) || queue_has_abort_cmds(queue)));
+ (!mp_input_is_abort_cmd(cmd) || queue_has_abort_cmds(queue)));
}
static void interpret_key(struct input_ctx *ictx, int code, double scale)