=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.558 retrieving revision 1.559 diff -u -r1.558 -r1.559 --- src/usr.bin/tmux/tmux.h 2015/09/14 10:25:52 1.558 +++ src/usr.bin/tmux/tmux.h 2015/09/14 11:34:50 1.559 @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.558 2015/09/14 10:25:52 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.559 2015/09/14 11:34:50 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -1983,6 +1983,8 @@ struct window_pane *window_find_string(struct window *, const char *); int window_has_pane(struct window *, struct window_pane *); int window_set_active_pane(struct window *, struct window_pane *); +void window_redraw_active_switch(struct window *, + struct window_pane *); struct window_pane *window_add_pane(struct window *, u_int); void window_resize(struct window *, u_int, u_int); int window_zoom(struct window_pane *); @@ -2210,5 +2212,7 @@ const char *); void style_apply_update(struct grid_cell *, struct options *, const char *); +int style_equal(const struct grid_cell *, + const struct grid_cell *); #endif /* TMUX_H */