summaryrefslogtreecommitdiffstats
path: root/grid-view.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2013-03-25 10:05:35 +0000
committerNicholas Marriott <nicm@openbsd.org>2013-03-25 10:05:35 +0000
commite85f764f230c391d072d439cf9e2bea21284c2fe (patch)
tree789c152360a70fefbd71942dfe1a9cac1d39185d /grid-view.c
parente2e85650ac31a4814394e0bfe57b143de0b93e30 (diff)
Preserve trailing spaces with capture-pane -J, 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 a9a7e189..4fe38fed 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, 0));
+ return (grid_string_cells(gd, px, py, nx, NULL, 0, 0, 0));
}