aboutsummaryrefslogtreecommitdiff
path: root/screen-write.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-03-28 15:43:41 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-03-28 15:43:41 +0000
commit989d67ccd7c6a685df7af87868b3477989c064e5 (patch)
tree5109cd83d019dbbbaa77e0bd3d21a1d548322889 /screen-write.c
parent8762338e309dadb4cef19f34f2b870aa09c6cf45 (diff)
downloadrtmux-989d67ccd7c6a685df7af87868b3477989c064e5.tar.gz
rtmux-989d67ccd7c6a685df7af87868b3477989c064e5.tar.bz2
rtmux-989d67ccd7c6a685df7af87868b3477989c064e5.zip
struct grid_data -> struct grid. Stage 1 of the Grand Plan To Make UTF-8 Better.
Diffstat (limited to 'screen-write.c')
-rw-r--r--screen-write.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/screen-write.c b/screen-write.c
index 0d009d7e..1f256031 100644
--- a/screen-write.c
+++ b/screen-write.c
@@ -1,4 +1,4 @@
-/* $Id: screen-write.c,v 1.37 2009-03-05 20:27:51 nicm Exp $ */
+/* $Id: screen-write.c,v 1.38 2009-03-28 15:43:41 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -75,7 +75,7 @@ screen_write_copy(struct screen_write_ctx *ctx,
struct screen *src, u_int px, u_int py, u_int nx, u_int ny)
{
struct screen *s = ctx->s;
- struct grid_data *gd = src->grid;
+ struct grid *gd = src->grid;
const struct grid_cell *gc;
u_int xx, yy, cx, cy;
@@ -516,7 +516,7 @@ void
screen_write_cell(struct screen_write_ctx *ctx, const struct grid_cell *gc)
{
struct screen *s = ctx->s;
- struct grid_data *gd = s->grid;
+ struct grid *gd = s->grid;
u_int width, xx;
const struct grid_cell *hc;
struct grid_cell *ic, tc;