=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.457 retrieving revision 1.458 diff -u -r1.457 -r1.458 --- src/usr.bin/tmux/tmux.h 2014/04/24 09:14:43 1.457 +++ src/usr.bin/tmux/tmux.h 2014/05/08 06:03:30 1.458 @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.457 2014/04/24 09:14:43 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.458 2014/05/08 06:03:30 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -892,6 +892,7 @@ /* Child window structure. */ struct window_pane { u_int id; + u_int active_point; struct window *window; @@ -948,6 +949,7 @@ }; TAILQ_HEAD(window_panes, window_pane); RB_HEAD(window_pane_tree, window_pane); +ARRAY_DECL(window_pane_list, struct window_pane *); /* Window structure. */ struct window { @@ -1025,8 +1027,6 @@ u_int yoff; struct window_pane *wp; - struct window_pane *lastwp; - struct layout_cells cells; TAILQ_ENTRY(layout_cell) entry;