aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-11-19 10:22:06 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-11-19 10:22:06 +0000
commitac5b7d518e78ed21ed8a9757f5ea3f49f407d232 (patch)
treece714e131cfbef0f7445ac9b657c34de9323af2d /tmux.h
parent8d4eae56626a40b24ce3964e2e2560b23082bde4 (diff)
downloadrtmux-ac5b7d518e78ed21ed8a9757f5ea3f49f407d232.tar.gz
rtmux-ac5b7d518e78ed21ed8a9757f5ea3f49f407d232.tar.bz2
rtmux-ac5b7d518e78ed21ed8a9757f5ea3f49f407d232.zip
Don't interpret #() for display-message, it usually doesn't make sense and may
leak commands.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 517fe9d4..78869274 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1617,7 +1617,7 @@ void server_update_event(struct client *);
/* status.c */
int status_redraw(struct client *);
-char *status_replace(struct client *, const char *, time_t);
+char *status_replace(struct client *, const char *, time_t, int);
void printflike2 status_message_set(struct client *, const char *, ...);
void status_message_clear(struct client *);
int status_message_redraw(struct client *);