summaryrefslogtreecommitdiff
path: root/src/tty_interface.c
diff options
context:
space:
mode:
authorJohn Hawthorn <john@hawthorn.email>2018-09-15 14:15:28 -0700
committerJohn Hawthorn <john@hawthorn.email>2018-09-23 11:23:53 -0700
commitc173310a093ba1277f419190ecaa36cdb97455a6 (patch)
tree142e274b822bb0d9ac0e534a74ad866d441c7473 /src/tty_interface.c
parentdc0a9a8e2d56ad9d7b7879fac9935787ce7e8043 (diff)
Allow masking signals in tty_input_ready
Diffstat (limited to 'src/tty_interface.c')
-rw-r--r--src/tty_interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tty_interface.c b/src/tty_interface.c
index 5839af7..6482c68 100644
--- a/src/tty_interface.c
+++ b/src/tty_interface.c
@@ -373,7 +373,7 @@ int tty_interface_run(tty_interface_t *state) {
return state->exit;
draw(state);
- } while (tty_input_ready(state->tty, state->ambiguous_key_pending ? KEYTIMEOUT : 0));
+ } while (tty_input_ready(state->tty, state->ambiguous_key_pending ? KEYTIMEOUT : 0, 0));
if (state->ambiguous_key_pending) {
char s[1] = "";