diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-11-19 10:22:06 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-11-19 10:22:06 +0000 |
commit | ac5b7d518e78ed21ed8a9757f5ea3f49f407d232 (patch) | |
tree | ce714e131cfbef0f7445ac9b657c34de9323af2d /tmux.h | |
parent | 8d4eae56626a40b24ce3964e2e2560b23082bde4 (diff) | |
download | rtmux-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 *); |