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