diff options
author | nicm <nicm> | 2019-05-20 11:46:06 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-05-20 11:46:06 +0000 |
commit | e128c7fcd8441f3fa885eafc9328f0937cc7384c (patch) | |
tree | 2cd1ef8259cb2bcc22e52425d4515d2a7d1bd100 /tmux.h | |
parent | 8db89f8efba007bab51dd8b8979a828730892f56 (diff) | |
download | rtmux-e128c7fcd8441f3fa885eafc9328f0937cc7384c.tar.gz rtmux-e128c7fcd8441f3fa885eafc9328f0937cc7384c.tar.bz2 rtmux-e128c7fcd8441f3fa885eafc9328f0937cc7384c.zip |
Replace the various identical error callbacks with a single one in cmd-queue.c.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 *, |