From b8b5631d9d11ce786bdb049b9d5aa71b4582a93f Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 21 Feb 2013 09:35:01 +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 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)); } -- cgit