=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.530 retrieving revision 1.531 diff -c -r1.530 -r1.531 *** src/usr.bin/tmux/tmux.h 2015/07/28 15:18:10 1.530 --- src/usr.bin/tmux/tmux.h 2015/07/29 11:56:02 1.531 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.530 2015/07/28 15:18:10 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.531 2015/07/29 11:56:02 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 1176,1190 **** 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; --- 1176,1181 ---- *************** *** 1215,1222 **** struct event repeat_timer; - struct status_out_tree status_old; - struct status_out_tree status_new; struct timeval status_timer; struct screen status; --- 1206,1211 ---- *************** *** 1904,1914 **** 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 *, ...); --- 1893,1899 ----