summaryrefslogtreecommitdiffstats
path: root/window.c
diff options
context:
space:
mode:
authornicm <nicm>2019-06-18 11:08:42 +0000
committernicm <nicm>2019-06-18 11:08:42 +0000
commit9272fe36e2e36789342337d81914008826499941 (patch)
tree754612843b49e5d1546b5f81cf3d969b6a666290 /window.c
parent03da0ced46e0ddcfbdcc6d580d906f47279cabcd (diff)
Add a cmdq_continue function rather than twiddling the flag directly.
Diffstat (limited to 'window.c')
-rw-r--r--window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/window.c b/window.c
index e89cf96c..e7941c70 100644
--- a/window.c
+++ b/window.c
@@ -1512,7 +1512,7 @@ window_pane_input_callback(struct client *c, int closed, void *data)
c->stdin_callback = NULL;
server_client_unref(c);
- cdata->item->flags &= ~CMDQ_WAITING;
+ cmdq_continue(cdata->item);
free(cdata);
return;