mirror of
https://github.com/tmux/tmux.git
synced 2025-09-03 06:17:04 +00:00
struct grid_data -> struct grid. Stage 1 of the Grand Plan To Make UTF-8 Better.
This commit is contained in:
8
screen.c
8
screen.c
@ -1,4 +1,4 @@
|
||||
/* $Id: screen.c,v 1.78 2009-01-10 01:51:22 nicm Exp $ */
|
||||
/* $Id: screen.c,v 1.79 2009-03-28 15:43:41 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -87,7 +87,7 @@ screen_resize(struct screen *s, u_int sx, u_int sy)
|
||||
void
|
||||
screen_resize_x(struct screen *s, u_int sx)
|
||||
{
|
||||
struct grid_data *gd = s->grid;
|
||||
struct grid *gd = s->grid;
|
||||
const struct grid_cell *gc;
|
||||
u_int xx, yy;
|
||||
|
||||
@ -128,8 +128,8 @@ screen_resize_x(struct screen *s, u_int sx)
|
||||
void
|
||||
screen_resize_y(struct screen *s, u_int sy)
|
||||
{
|
||||
struct grid_data *gd = s->grid;
|
||||
u_int oy, yy, ny;
|
||||
struct grid *gd = s->grid;
|
||||
u_int oy, yy, ny;
|
||||
|
||||
if (sy == 0)
|
||||
fatalx("zero size");
|
||||
|
Reference in New Issue
Block a user