=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.869 retrieving revision 1.870 diff -u -r1.869 -r1.870 --- src/usr.bin/tmux/tmux.h 2019/03/15 21:54:47 1.869 +++ src/usr.bin/tmux/tmux.h 2019/03/16 17:14:07 1.870 @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.869 2019/03/15 21:54:47 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.870 2019/03/16 17:14:07 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -1314,8 +1314,8 @@ struct status_line { struct event timer; - struct screen status; - struct screen *old_status; + struct screen screen; + struct screen *old_screen; int window_list_offset; @@ -1967,10 +1967,11 @@ /* status.c */ void status_timer_start(struct client *); void status_timer_start_all(void); -void status_update_saved(struct session *); +void status_update_cache(struct session *); int status_at_line(struct client *); u_int status_line_size(struct client *); struct window *status_get_window_at(struct client *, u_int); +void status_init(struct client *); void status_free(struct client *); int status_redraw(struct client *); void printflike(2, 3) status_message_set(struct client *, const char *, ...);