diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-02-21 09:35:01 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-02-21 09:35:01 +0000 |
commit | b8b5631d9d11ce786bdb049b9d5aa71b4582a93f (patch) | |
tree | 76045762675a1442cfe53fe3b06c0879bf6037ad /grid-view.c | |
parent | cb6f36655efe8d7169517cc06ef6c4513a1d14d6 (diff) | |
download | rtmux-b8b5631d9d11ce786bdb049b9d5aa71b4582a93f.tar.gz rtmux-b8b5631d9d11ce786bdb049b9d5aa71b4582a93f.tar.bz2 rtmux-b8b5631d9d11ce786bdb049b9d5aa71b4582a93f.zip |
Add -C and -J to capture pane to escape control sequences and to join wrapped
line, based on a diff from George Nachman.
Diffstat (limited to 'grid-view.c')
-rw-r--r-- | grid-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grid-view.c b/grid-view.c index baaddbe0..3c5a8728 100644 --- a/grid-view.c +++ b/grid-view.c @@ -234,5 +234,5 @@ grid_view_string_cells(struct grid *gd, u_int px, u_int py, u_int nx) px = grid_view_x(gd, px); py = grid_view_y(gd, py); - return (grid_string_cells(gd, px, py, nx, NULL, 0)); + return (grid_string_cells(gd, px, py, nx, NULL, 0, 0)); } |