summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2019-05-20 11:46:06 +0000
committernicm <nicm>2019-05-20 11:46:06 +0000
commite128c7fcd8441f3fa885eafc9328f0937cc7384c (patch)
tree2cd1ef8259cb2bcc22e52425d4515d2a7d1bd100 /tmux.h
parent8db89f8efba007bab51dd8b8979a828730892f56 (diff)
Replace the various identical error callbacks with a single one in cmd-queue.c.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tmux.h b/tmux.h
index 4317bf0b..c87c797c 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1983,6 +1983,7 @@ struct cmdq_item *cmdq_get_command(struct cmd_list *, struct cmd_find_state *,
struct mouse_event *, int);
#define cmdq_get_callback(cb, data) cmdq_get_callback1(#cb, cb, data)
struct cmdq_item *cmdq_get_callback1(const char *, cmdq_cb, void *);
+struct cmdq_item *cmdq_get_error(const char *);
void cmdq_insert_after(struct cmdq_item *, struct cmdq_item *);
void cmdq_append(struct client *, struct cmdq_item *);
void cmdq_insert_hook(struct session *, struct cmdq_item *,