diff options
author | 2019-03-15 14:46:58 +0000 | |
---|---|---|
committer | 2019-03-15 14:46:58 +0000 | |
commit | 94912b4e3963259aac5b5a931f3dd60efdd41082 (patch) | |
tree | 3b066cd60e68bf7c5aad088bbddfc514e3ca0c33 /usr.bin/tmux/tmux.h | |
parent | Document the return values of X509_delete_ext(3) and X509_add_ext(3). (diff) | |
download | wireguard-openbsd-94912b4e3963259aac5b5a931f3dd60efdd41082.tar.xz wireguard-openbsd-94912b4e3963259aac5b5a931f3dd60efdd41082.zip |
Move status line free into its own function.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 42dac1acf42..86f8429c297 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.867 2019/03/15 10:48:05 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.868 2019/03/15 14:46:58 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1970,6 +1970,7 @@ void status_update_saved(struct session *); int status_at_line(struct client *); u_int status_line_size(struct client *); struct window *status_get_window_at(struct client *, u_int); +void status_free(struct client *); int status_redraw(struct client *); void printflike(2, 3) status_message_set(struct client *, const char *, ...); void status_message_clear(struct client *); |