=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.373 retrieving revision 1.374 diff -c -r1.373 -r1.374 *** src/usr.bin/tmux/tmux.h 2013/01/18 02:16:21 1.373 --- src/usr.bin/tmux/tmux.h 2013/02/05 11:08:59 1.374 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.373 2013/01/18 02:16:21 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.374 2013/02/05 11:08:59 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 1964,1969 **** --- 1964,1970 ---- char *grid_string_cells(struct grid *, u_int, u_int, u_int); void grid_duplicate_lines( struct grid *, u_int, struct grid *, u_int, u_int); + u_int grid_reflow(struct grid *, const struct grid *, u_int); /* grid-cell.c */ u_int grid_cell_width(const struct grid_cell *); *************** *** 2057,2067 **** void screen_set_cursor_style(struct screen *, u_int); void screen_set_cursor_colour(struct screen *, const char *); void screen_set_title(struct screen *, const char *); ! void screen_resize(struct screen *, u_int, u_int); void screen_set_selection(struct screen *, u_int, u_int, u_int, u_int, u_int, struct grid_cell *); void screen_clear_selection(struct screen *); int screen_check_selection(struct screen *, u_int, u_int); /* window.c */ extern struct windows windows; --- 2058,2069 ---- void screen_set_cursor_style(struct screen *, u_int); void screen_set_cursor_colour(struct screen *, const char *); void screen_set_title(struct screen *, const char *); ! void screen_resize(struct screen *, u_int, u_int, int); void screen_set_selection(struct screen *, u_int, u_int, u_int, u_int, u_int, struct grid_cell *); void screen_clear_selection(struct screen *); int screen_check_selection(struct screen *, u_int, u_int); + void screen_reflow(struct screen *, u_int); /* window.c */ extern struct windows windows;