diff options
author | Thomas Adam <thomas.adam@smoothwall.net> | 2013-02-07 12:08:55 +0000 |
---|---|---|
committer | Thomas Adam <thomas.adam@smoothwall.net> | 2013-02-07 12:08:55 +0000 |
commit | 64da762c15ddf0930baa1f8e4fc2b41515a64e3a (patch) | |
tree | cd2a953395962c7f2e7265d16722508a80606372 /tmux.h | |
parent | fe00607816308953209cb85ab92a586c1f344cde (diff) | |
parent | 8903c1f167839569b7514508b38988aa6486575c (diff) | |
download | rtmux-64da762c15ddf0930baa1f8e4fc2b41515a64e3a.tar.gz rtmux-64da762c15ddf0930baa1f8e4fc2b41515a64e3a.tar.bz2 rtmux-64da762c15ddf0930baa1f8e4fc2b41515a64e3a.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1960,6 +1960,7 @@ void grid_move_cells(struct grid *, u_int, u_int, u_int, u_int); 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 *); @@ -2053,11 +2054,12 @@ void screen_reset_tabs(struct screen *); 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_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; |