summaryrefslogtreecommitdiffstats
path: root/grid-view.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2013-03-22 15:56:11 +0000
committerNicholas Marriott <nicm@openbsd.org>2013-03-22 15:56:11 +0000
commit295d86911e7f7823785d138d96d94ccfa924e29d (patch)
tree137ae843cd008b2ad05a7a678303d387fa347221 /grid-view.c
parentc519f9a84cd9fc3fdec8b61afaf42995f9e48b46 (diff)
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.c2
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));
}