aboutsummaryrefslogtreecommitdiff
path: root/grid-view.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2013-03-04 11:03:03 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2013-03-04 11:03:03 +0000
commitaaeee34c3250892c8a20e9c95efe66c1d0ec4be2 (patch)
tree71ddef687aed06d4eab527d00c2ec630253ac566 /grid-view.c
parent70397e4a957eefc2808c600214d8f7689caead71 (diff)
downloadrtmux-aaeee34c3250892c8a20e9c95efe66c1d0ec4be2.tar.gz
rtmux-aaeee34c3250892c8a20e9c95efe66c1d0ec4be2.tar.bz2
rtmux-aaeee34c3250892c8a20e9c95efe66c1d0ec4be2.zip
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 3c5a8728..7ef443a3 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));
}