diff options
author | Thomas Adam <thomas@xteddy.org> | 2015-07-29 14:01:09 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2015-07-29 14:01:09 +0100 |
commit | 73b4d098ce42039e111ef51b64135d8fc0c7a58f (patch) | |
tree | bc0fa168a4b448fa0fd89d15effbab7fa9e00daa /tmux.h | |
parent | a568aaa0c0bd829026b10cdb5a1597aa584586ae (diff) | |
parent | 5ec3621101e13e9032d1871f02883757b18d51ac (diff) | |
download | rtmux-73b4d098ce42039e111ef51b64135d8fc0c7a58f.tar.gz rtmux-73b4d098ce42039e111ef51b64135d8fc0c7a58f.tar.bz2 rtmux-73b4d098ce42039e111ef51b64135d8fc0c7a58f.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 15 |
1 files changed, 0 insertions, 15 deletions
@@ -1180,15 +1180,6 @@ struct message_entry { TAILQ_ENTRY(message_entry) entry; }; -/* Status output data from a job. */ -struct status_out { - char *cmd; - char *out; - - RB_ENTRY(status_out) entry; -}; -RB_HEAD(status_out_tree, status_out); - /* Client connection. */ struct client { struct imsgbuf ibuf; @@ -1219,8 +1210,6 @@ struct client { struct event repeat_timer; - struct status_out_tree status_old; - struct status_out_tree status_new; struct timeval status_timer; struct screen status; @@ -1908,11 +1897,7 @@ int server_set_stdin_callback(struct client *, void (*)(struct client *, void server_unzoom_window(struct window *); /* status.c */ -int status_out_cmp(struct status_out *, struct status_out *); -RB_PROTOTYPE(status_out_tree, status_out, entry, status_out_cmp); int status_at_line(struct client *); -void status_free_jobs(struct status_out_tree *); -void status_update_jobs(struct client *); struct window *status_get_window_at(struct client *, u_int); int status_redraw(struct client *); void printflike(2, 3) status_message_set(struct client *, const char *, ...); |