summaryrefslogtreecommitdiffstats
path: root/screen.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-09-29 18:51:26 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-09-29 18:51:26 +0000
commite30a3478f53a0652e2b3611b2f7f87b9aced68fc (patch)
treed2a07c1351deb88bf50772b4948b69abf7552fac /screen.c
parentd17df2cd11f36925e4edd986c193d102fdb66c49 (diff)
Whoooops. lower not upper.
Diffstat (limited to 'screen.c')
-rw-r--r--screen.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/screen.c b/screen.c
index d1887b70..bff1a469 100644
--- a/screen.c
+++ b/screen.c
@@ -1,4 +1,4 @@
-/* $Id: screen.c,v 1.15 2007-09-29 18:48:04 nicm Exp $ */
+/* $Id: screen.c,v 1.16 2007-09-29 18:51:26 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -590,10 +590,10 @@ screen_insert_lines_region(struct screen *s, u_int py, u_int ny)
* screen_make_lines(s, 13, 2); - make lines 13,14
*/
- screen_free_lines(s, (s->ry_upper + 1) - ny, ny);
+ screen_free_lines(s, (s->ry_lower + 1) - ny, ny);
if (py != s->ry_upper)
- screen_move_lines(s, py + ny, py, (s->ry_upper + 1) - py - ny);
+ screen_move_lines(s, py + ny, py, (s->ry_lower + 1) - py - ny);
screen_make_lines(s, py, ny);
screen_fill_lines(