=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.371 retrieving revision 1.372 diff -c -r1.371 -r1.372 *** src/usr.bin/tmux/tmux.h 2013/01/15 23:18:55 1.371 --- src/usr.bin/tmux/tmux.h 2013/01/17 00:11:22 1.372 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.371 2013/01/15 23:18:55 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.372 2013/01/17 00:11:22 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 974,986 **** TAILQ_HEAD(window_panes, window_pane); RB_HEAD(window_pane_tree, window_pane); - /* Window last layout. */ - struct last_layout { - char *layout; - - TAILQ_ENTRY(last_layout) entry; - }; - /* Window structure. */ struct window { u_int id; --- 974,979 ---- *************** *** 994,1002 **** int lastlayout; struct layout_cell *layout_root; - TAILQ_HEAD(last_layouts, last_layout) layout_list; - u_int layout_list_size; - struct last_layout *layout_list_last; u_int sx; u_int sy; --- 987,992 ---- *************** *** 2179,2186 **** struct layout_cell *layout_create_cell(struct layout_cell *); void layout_free_cell(struct layout_cell *); void layout_print_cell(struct layout_cell *, const char *, u_int); ! void layout_destroy_cell( ! struct layout_cell *, struct layout_cell **); void layout_set_size( struct layout_cell *, u_int, u_int, u_int, u_int); void layout_make_leaf( --- 2169,2175 ---- struct layout_cell *layout_create_cell(struct layout_cell *); void layout_free_cell(struct layout_cell *); void layout_print_cell(struct layout_cell *, const char *, u_int); ! void layout_destroy_cell(struct layout_cell *, struct layout_cell **); void layout_set_size( struct layout_cell *, u_int, u_int, u_int, u_int); void layout_make_leaf( *************** *** 2201,2209 **** struct layout_cell *layout_split_pane( struct window_pane *, enum layout_type, int, int); void layout_close_pane(struct window_pane *); - void layout_list_add(struct window *); - const char *layout_list_redo(struct window *); - const char *layout_list_undo(struct window *); /* layout-custom.c */ char *layout_dump(struct window *); --- 2190,2195 ----