diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-11-19 10:22:08 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-11-19 10:22:08 +0000 |
commit | 845be9c312d2c37fb306423861d72d102a1ee841 (patch) | |
tree | a78ff8f18e3d397e3cffef1f6af78169b45f3959 /usr.bin/tmux/tmux.h | |
parent | 8b12ee1bb78ac0a27cbe0aa1285ad6c24a55095e (diff) |
Don't interpret #() for display-message, it usually doesn't make sense and may
leak commands.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 871c48bb077..dd35f0ca0b9 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.181 2009/11/18 17:02:17 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.182 2009/11/19 10:22:07 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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 *); |