status_out and associated data structures are no longer used.

This commit is contained in:
nicm
2015-07-29 11:56:02 +00:00
parent b254115acd
commit 5ec3621101
3 changed files with 0 additions and 27 deletions

View File

@ -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)