aboutsummaryrefslogtreecommitdiff
path: root/grid-view.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2013-02-21 09:35:01 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2013-02-21 09:35:01 +0000
commitb8b5631d9d11ce786bdb049b9d5aa71b4582a93f (patch)
tree76045762675a1442cfe53fe3b06c0879bf6037ad /grid-view.c
parentcb6f36655efe8d7169517cc06ef6c4513a1d14d6 (diff)
downloadrtmux-b8b5631d9d11ce786bdb049b9d5aa71b4582a93f.tar.gz
rtmux-b8b5631d9d11ce786bdb049b9d5aa71b4582a93f.tar.bz2
rtmux-b8b5631d9d11ce786bdb049b9d5aa71b4582a93f.zip
Add -C and -J to capture pane to escape control sequences and to join wrapped
line, based on a diff 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 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));
}