aboutsummaryrefslogtreecommitdiff
path: root/screen-display.c
diff options
context:
space:
mode:
Diffstat (limited to 'screen-display.c')
-rw-r--r--screen-display.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/screen-display.c b/screen-display.c
index e11c6aaa..786d704a 100644
--- a/screen-display.c
+++ b/screen-display.c
@@ -1,4 +1,4 @@
-/* $Id: screen-display.c,v 1.2 2007-11-21 13:11:41 nicm Exp $ */
+/* $Id: screen-display.c,v 1.3 2007-11-21 15:35:53 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -193,6 +193,8 @@ screen_display_scroll_region_up(struct screen *s)
s->grid_attr, sy + 1, sizeof *s->grid_attr);
s->grid_colr = xrealloc(
s->grid_colr, sy + 1, sizeof *s->grid_colr);
+ s->grid_size = xrealloc(
+ s->grid_size, sy + 1, sizeof *s->grid_size);
}
screen_display_make_lines(s, screen_last_y(s), 1);
return;