diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-03-13 07:31:36 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-03-13 07:31:36 +0000 |
commit | c5ad47ee7c7595c1d0dcf2a226742fd19d548605 (patch) | |
tree | 4046ba5500a5d0bfc9d7dc615536d47996cee0c5 /tmux.h | |
parent | 4d38b6d1fab398b0af6d22281d0d4b35448524f7 (diff) | |
download | rtmux-c5ad47ee7c7595c1d0dcf2a226742fd19d548605.tar.gz rtmux-c5ad47ee7c7595c1d0dcf2a226742fd19d548605.tar.bz2 rtmux-c5ad47ee7c7595c1d0dcf2a226742fd19d548605.zip |
Only send end guard if begin was sent, from George Nachman.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1856,7 +1856,7 @@ int cmdq_free(struct cmd_q *); void printflike2 cmdq_print(struct cmd_q *, const char *, ...); void printflike2 cmdq_info(struct cmd_q *, const char *, ...); void printflike2 cmdq_error(struct cmd_q *, const char *, ...); -void cmdq_guard(struct cmd_q *, const char *); +int cmdq_guard(struct cmd_q *, const char *); void cmdq_run(struct cmd_q *, struct cmd_list *); void cmdq_append(struct cmd_q *, struct cmd_list *); int cmdq_continue(struct cmd_q *); |