diff options
author | nicm <nicm> | 2020-04-15 12:59:20 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-04-15 12:59:20 +0000 |
commit | c7883d5c872a56c5342092f81e87e0742713b4de (patch) | |
tree | 2e162da6d8002824e54a9582e62a4452559e7a31 /tmux.h | |
parent | b9a00cbe8ac7436008b9697de4b738ebed19ed8c (diff) | |
download | rtmux-c7883d5c872a56c5342092f81e87e0742713b4de.tar.gz rtmux-c7883d5c872a56c5342092f81e87e0742713b4de.tar.bz2 rtmux-c7883d5c872a56c5342092f81e87e0742713b4de.zip |
Use grid_empty_line rather than memset when adding new lines on resize.
Also remove some old test code.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -2312,6 +2312,7 @@ int attributes_fromstring(const char *); /* grid.c */ extern const struct grid_cell grid_default_cell; +void grid_empty_line(struct grid *, u_int, u_int); int grid_cells_equal(const struct grid_cell *, const struct grid_cell *); struct grid *grid_create(u_int, u_int, u_int); void grid_destroy(struct grid *); |