mirror of
https://github.com/tmux/tmux.git
synced 2025-09-05 08:07:03 +00:00
Horizontal history/scrolling.
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user