aboutsummaryrefslogtreecommitdiff
path: root/grid-view.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2013-02-19 09:55:02 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2013-02-19 09:55:02 +0000
commit4d1d4d6e8eb40f21eea851461ea2166242b3409f (patch)
tree8b16284be035123e66f1e12513152c0bee5ddf5f /grid-view.c
parenta96dd1932ad43457e710d154edccbfb08c1c2520 (diff)
downloadrtmux-4d1d4d6e8eb40f21eea851461ea2166242b3409f.tar.gz
rtmux-4d1d4d6e8eb40f21eea851461ea2166242b3409f.tar.bz2
rtmux-4d1d4d6e8eb40f21eea851461ea2166242b3409f.zip
Add -e flag to capture-pane to include embedded ANSI SGR escape sequences, 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 b4355413..baaddbe0 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));
+ return (grid_string_cells(gd, px, py, nx, NULL, 0));
}