diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2015-08-07 15:08:26 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2015-08-07 15:08:26 +0100 |
commit | 3c9b8a28c61e88d258060e38d459b05023b525ab (patch) | |
tree | 19dfe2b769fe01698316d9b336cfa9c8be392b49 /status.c | |
parent | 736d8350e930c37b12b9e78d92def3b701040667 (diff) | |
parent | 73b4d098ce42039e111ef51b64135d8fc0c7a58f (diff) | |
download | rtmux-3c9b8a28c61e88d258060e38d459b05023b525ab.tar.gz rtmux-3c9b8a28c61e88d258060e38d459b05023b525ab.tar.bz2 rtmux-3c9b8a28c61e88d258060e38d459b05023b525ab.zip |
Merge branch 'master' of github.com:tmux/tmux
Diffstat (limited to 'status.c')
-rw-r--r-- | status.c | 11 |
1 files changed, 0 insertions, 11 deletions
@@ -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 *); @@ -143,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) |