=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/layout-set.c,v retrieving revision 1.15 retrieving revision 1.16 diff -c -r1.15 -r1.16 *** src/usr.bin/tmux/layout-set.c 2016/08/03 09:07:02 1.15 --- src/usr.bin/tmux/layout-set.c 2016/10/10 21:29:23 1.16 *************** *** 1,4 **** ! /* $OpenBSD: layout-set.c,v 1.15 2016/08/03 09:07:02 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: layout-set.c,v 1.16 2016/10/10 21:29:23 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott *************** *** 27,37 **** * one-off and generate a layout tree. */ ! void layout_set_even_h(struct window *); ! void layout_set_even_v(struct window *); ! void layout_set_main_h(struct window *); ! void layout_set_main_v(struct window *); ! void layout_set_tiled(struct window *); const struct { const char *name; --- 27,37 ---- * one-off and generate a layout tree. */ ! static void layout_set_even_h(struct window *); ! static void layout_set_even_v(struct window *); ! static void layout_set_main_h(struct window *); ! static void layout_set_main_v(struct window *); ! static void layout_set_tiled(struct window *); const struct { const char *name; *************** *** 114,120 **** return (layout); } ! void layout_set_even_h(struct window *w) { struct window_pane *wp; --- 114,120 ---- return (layout); } ! static void layout_set_even_h(struct window *w) { struct window_pane *wp; *************** *** 168,174 **** server_redraw_window(w); } ! void layout_set_even_v(struct window *w) { struct window_pane *wp; --- 168,174 ---- server_redraw_window(w); } ! static void layout_set_even_v(struct window *w) { struct window_pane *wp; *************** *** 222,228 **** server_redraw_window(w); } ! void layout_set_main_h(struct window *w) { struct window_pane *wp; --- 222,228 ---- server_redraw_window(w); } ! static void layout_set_main_h(struct window *w) { struct window_pane *wp; *************** *** 345,351 **** server_redraw_window(w); } ! void layout_set_main_v(struct window *w) { struct window_pane *wp; --- 345,351 ---- server_redraw_window(w); } ! static void layout_set_main_v(struct window *w) { struct window_pane *wp;