Horizontal history/scrolling.

This commit is contained in:
Nicholas Marriott
2007-11-21 15:35:53 +00:00
parent e4f01009a3
commit d5edaf988e
6 changed files with 88 additions and 45 deletions

View File

@ -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;