aboutsummaryrefslogtreecommitdiff
path: root/grid.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2013-08-23 15:58:46 +0100
committerNicholas Marriott <nicholas.marriott@gmail.com>2013-08-23 15:58:46 +0100
commit2f7ffab0e8de524832b591a9ce6f034406f52e3d (patch)
tree2eb118467251a2b38eb48c39b13cb93678cf846b /grid.c
parent3ed5e56a3974016dad9c28f42356aba9c05e0f4c (diff)
parenta0802dd4869bfefe548734a840dc2e1d3cb15c90 (diff)
downloadrtmux-2f7ffab0e8de524832b591a9ce6f034406f52e3d.tar.gz
rtmux-2f7ffab0e8de524832b591a9ce6f034406f52e3d.tar.bz2
rtmux-2f7ffab0e8de524832b591a9ce6f034406f52e3d.zip
Merge branch 'master' of ssh://git.code.sf.net/p/tmux/tmux-code
Diffstat (limited to 'grid.c')
-rw-r--r--grid.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/grid.c b/grid.c
index 5cc6c149..9e800243 100644
--- a/grid.c
+++ b/grid.c
@@ -268,8 +268,7 @@ grid_get_cell(struct grid *gd, u_int px, u_int py)
/* Set cell at relative position. */
void
-grid_set_cell(
- struct grid *gd, u_int px, u_int py, const struct grid_cell *gc)
+grid_set_cell(struct grid *gd, u_int px, u_int py, const struct grid_cell *gc)
{
if (grid_check_y(gd, py) != 0)
return;
@@ -657,8 +656,8 @@ grid_string_cells(struct grid *gd, u_int px, u_int py, u_int nx,
* available.
*/
void
-grid_duplicate_lines(
- struct grid *dst, u_int dy, struct grid *src, u_int sy, u_int ny)
+grid_duplicate_lines(struct grid *dst, u_int dy, struct grid *src, u_int sy,
+ u_int ny)
{
struct grid_line *dstl, *srcl;
u_int yy;