aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2015-07-29 11:56:02 +0000
committernicm <nicm>2015-07-29 11:56:02 +0000
commit5ec3621101e13e9032d1871f02883757b18d51ac (patch)
treeb52bc910864a181ee82c35cab049322f151b65bb /tmux.h
parentb254115acd54513cd4b5858e31afc7980e93246c (diff)
downloadrtmux-5ec3621101e13e9032d1871f02883757b18d51ac.tar.gz
rtmux-5ec3621101e13e9032d1871f02883757b18d51ac.tar.bz2
rtmux-5ec3621101e13e9032d1871f02883757b18d51ac.zip
status_out and associated data structures are no longer used.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/tmux.h b/tmux.h
index b3456922..0f9cb26e 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1176,15 +1176,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;
@@ -1215,8 +1206,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;
@@ -1904,11 +1893,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 *, ...);