From b254115acd54513cd4b5858e31afc7980e93246c Mon Sep 17 00:00:00 2001 From: nicm Date: Tue, 28 Jul 2015 15:18:10 +0000 Subject: Tidy up the way terminals are described and move some structs out of tmux.h. --- status.c | 1 - 1 file changed, 1 deletion(-) (limited to 'status.c') diff --git a/status.c b/status.c index 96ff8994..16f4fa70 100644 --- a/status.c +++ b/status.c @@ -36,7 +36,6 @@ char *status_redraw_get_right(struct client *, time_t, int, char *status_print(struct client *, struct winlink *, time_t, struct grid_cell *); char *status_replace(struct client *, struct winlink *, const char *, time_t); -void status_replace1(char **, char **, char *, size_t); void status_message_callback(int, short, void *); const char *status_prompt_up_history(u_int *); -- cgit From 5ec3621101e13e9032d1871f02883757b18d51ac Mon Sep 17 00:00:00 2001 From: nicm Date: Wed, 29 Jul 2015 11:56:02 +0000 Subject: status_out and associated data structures are no longer used. --- status.c | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'status.c') diff --git a/status.c b/status.c index 16f4fa70..d9501f02 100644 --- a/status.c +++ b/status.c @@ -142,16 +142,6 @@ status_prompt_save_history(void) } -/* Status output tree. */ -RB_GENERATE(status_out_tree, status_out, entry, status_out_cmp); - -/* Output tree comparison function. */ -int -status_out_cmp(struct status_out *so1, struct status_out *so2) -{ - return (strcmp(so1->cmd, so2->cmd)); -} - /* Get screen line of status line. -1 means off. */ int status_at_line(struct client *c) -- cgit