From 295d86911e7f7823785d138d96d94ccfa924e29d Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 22 Mar 2013 15:56:11 +0000 Subject: Add -C and -J to capture pane to escape control sequences and to join wrapped line, based on a diff from George Nachman. --- grid-view.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'grid-view.c') 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)); } -- cgit