diff options
author | 2009-06-24 22:04:18 +0000 | |
---|---|---|
committer | 2009-06-24 22:04:18 +0000 | |
commit | b6d61ae9ed701be9f652e5a74a2f15ad4a595772 (patch) | |
tree | bca1c3608d27931d5a17d3d56696c5c60052ed2b /usr.bin/tmux/grid-view.c | |
parent | fix this regression test; "reassemble tcp" should be in this location (diff) | |
download | wireguard-openbsd-b6d61ae9ed701be9f652e5a74a2f15ad4a595772.tar.xz wireguard-openbsd-b6d61ae9ed701be9f652e5a74a2f15ad4a595772.zip |
Add a dedicated function to convert a line into a string and use it to simplify the search window function.
Diffstat (limited to 'usr.bin/tmux/grid-view.c')
-rw-r--r-- | usr.bin/tmux/grid-view.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/usr.bin/tmux/grid-view.c b/usr.bin/tmux/grid-view.c index 7e4920ac7f8..8154495b544 100644 --- a/usr.bin/tmux/grid-view.c +++ b/usr.bin/tmux/grid-view.c @@ -1,4 +1,4 @@ -/* $OpenBSD: grid-view.c,v 1.1 2009/06/01 22:58:49 nicm Exp $ */ +/* $OpenBSD: grid-view.c,v 1.2 2009/06/24 22:04:18 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net> @@ -209,3 +209,15 @@ grid_view_delete_cells(struct grid *gd, u_int px, u_int py, u_int nx) grid_move_cells(gd, px, px + nx, py, (sx - 1) - (px + nx)); } + +/* Convert cells into a string. */ +char * +grid_view_string_cells(struct grid *gd, u_int px, u_int py, u_int nx) +{ + GRID_DEBUG(gd, "px=%u, py=%u, nx=%u", px, py, nx); + + px = grid_view_x(gd, px); + py = grid_view_y(gd, py); + + return (grid_string_cells(gd, px, py, nx)); +} |