diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2013-03-22 15:56:11 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2013-03-22 15:56:11 +0000 |
commit | 295d86911e7f7823785d138d96d94ccfa924e29d (patch) | |
tree | 137ae843cd008b2ad05a7a678303d387fa347221 /grid-view.c | |
parent | c519f9a84cd9fc3fdec8b61afaf42995f9e48b46 (diff) | |
download | rtmux-295d86911e7f7823785d138d96d94ccfa924e29d.tar.gz rtmux-295d86911e7f7823785d138d96d94ccfa924e29d.tar.bz2 rtmux-295d86911e7f7823785d138d96d94ccfa924e29d.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 bde624cc..a9a7e189 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)); + return (grid_string_cells(gd, px, py, nx, NULL, 0, 0)); } |