mirror of
https://github.com/tmux/tmux.git
synced 2025-09-03 14:27:09 +00:00
_fill functions are no longer needed. Nuke them.
This commit is contained in:
15
grid-view.c
15
grid-view.c
@ -1,4 +1,4 @@
|
||||
/* $Id: grid-view.c,v 1.9 2009-03-28 16:55:46 nicm Exp $ */
|
||||
/* $Id: grid-view.c,v 1.10 2009-03-28 16:57:03 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -78,19 +78,6 @@ grid_view_clear(struct grid *gd, u_int px, u_int py, u_int nx, u_int ny)
|
||||
grid_clear(gd, px, py, nx, ny);
|
||||
}
|
||||
|
||||
/* Fill area. */
|
||||
void
|
||||
grid_view_fill(struct grid *gd, const struct grid_cell *gc,
|
||||
uint64_t text, u_int px, u_int py, u_int nx, u_int ny)
|
||||
{
|
||||
GRID_DEBUG(gd, "px=%u, py=%u, nx=%u, ny=%u", px, py, nx, ny);
|
||||
|
||||
px = grid_view_x(gd, px);
|
||||
py = grid_view_y(gd, py);
|
||||
|
||||
grid_fill(gd, gc, text, px, py, nx, ny);
|
||||
}
|
||||
|
||||
/* Scroll region up. */
|
||||
void
|
||||
grid_view_scroll_region_up(struct grid *gd, u_int rupper, u_int rlower)
|
||||
|
Reference in New Issue
Block a user