=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.1096 retrieving revision 1.1097 diff -c -r1.1096 -r1.1097 *** src/usr.bin/tmux/tmux.h 2021/03/02 10:56:45 1.1096 --- src/usr.bin/tmux/tmux.h 2021/03/11 06:31:05 1.1097 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.1096 2021/03/02 10:56:45 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.1097 2021/03/11 06:31:05 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 1862,1867 **** --- 1862,1868 ---- #define SPAWN_NONOTIFY 0x10 #define SPAWN_FULLSIZE 0x20 #define SPAWN_EMPTY 0x40 + #define SPAWN_ZOOM 0x80 }; /* Mode tree sort order. */ *************** *** 2752,2758 **** void window_pane_send_resize(struct window_pane *, int); int window_zoom(struct window_pane *); int window_unzoom(struct window *); ! int window_push_zoom(struct window *, int); int window_pop_zoom(struct window *); void window_lost_pane(struct window *, struct window_pane *); void window_remove_pane(struct window *, struct window_pane *); --- 2753,2759 ---- void window_pane_send_resize(struct window_pane *, int); int window_zoom(struct window_pane *); int window_unzoom(struct window *); ! int window_push_zoom(struct window *, int, int); int window_pop_zoom(struct window *); void window_lost_pane(struct window *, struct window_pane *); void window_remove_pane(struct window *, struct window_pane *); *************** *** 2815,2821 **** void layout_make_leaf(struct layout_cell *, struct window_pane *); void layout_make_node(struct layout_cell *, enum layout_type); void layout_fix_offsets(struct window *); ! void layout_fix_panes(struct window *); void layout_resize_adjust(struct window *, struct layout_cell *, enum layout_type, int); void layout_init(struct window *, struct window_pane *); --- 2816,2822 ---- void layout_make_leaf(struct layout_cell *, struct window_pane *); void layout_make_node(struct layout_cell *, enum layout_type); void layout_fix_offsets(struct window *); ! void layout_fix_panes(struct window *, struct window_pane *); void layout_resize_adjust(struct window *, struct layout_cell *, enum layout_type, int); void layout_init(struct window *, struct window_pane *); *************** *** 2825,2831 **** int, int); void layout_resize_pane_to(struct window_pane *, enum layout_type, u_int); ! void layout_assign_pane(struct layout_cell *, struct window_pane *); struct layout_cell *layout_split_pane(struct window_pane *, enum layout_type, int, int); void layout_close_pane(struct window_pane *); --- 2826,2833 ---- int, int); void layout_resize_pane_to(struct window_pane *, enum layout_type, u_int); ! void layout_assign_pane(struct layout_cell *, struct window_pane *, ! int); struct layout_cell *layout_split_pane(struct window_pane *, enum layout_type, int, int); void layout_close_pane(struct window_pane *);