diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2013-03-25 10:05:35 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2013-03-25 10:05:35 +0000 |
commit | e85f764f230c391d072d439cf9e2bea21284c2fe (patch) | |
tree | 789c152360a70fefbd71942dfe1a9cac1d39185d /grid-view.c | |
parent | e2e85650ac31a4814394e0bfe57b143de0b93e30 (diff) | |
download | rtmux-e85f764f230c391d072d439cf9e2bea21284c2fe.tar.gz rtmux-e85f764f230c391d072d439cf9e2bea21284c2fe.tar.bz2 rtmux-e85f764f230c391d072d439cf9e2bea21284c2fe.zip |
Preserve trailing spaces with capture-pane -J, from George Nachman.
Diffstat (limited to 'grid-view.c')
-rw-r--r-- | grid-view.c | 2 |
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)); } |