diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-07-01 19:14:33 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-07-01 19:14:33 +0000 |
commit | 35092835b04fda9ab5b13517701d0ee096abe1c0 (patch) | |
tree | 35bd57df43f8a804eae4a435b09cbf003a0101ce /screen-write.c | |
parent | 8fe3f1dcb20d06ed9d747834f97b91829dcbf6b6 (diff) | |
download | rtmux-35092835b04fda9ab5b13517701d0ee096abe1c0.tar.gz rtmux-35092835b04fda9ab5b13517701d0ee096abe1c0.tar.bz2 rtmux-35092835b04fda9ab5b13517701d0ee096abe1c0.zip |
Fix two errors with character/line insertion and deletion: the maximum number
of characters which may be inserted or deleted is the screen width, not one
less (and similarly for lines and height); and if characters or lines are
deleted by moving the ones that follow, the space at the end needs to be
cleared.
This appears to solve long-standing redraw issues most visible when using the
force-width option then scrolling in view(1) or unwrapping lines in emacs.
Diffstat (limited to 'screen-write.c')
-rw-r--r-- | screen-write.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/screen-write.c b/screen-write.c index 73e3fb2d..a8447a0f 100644 --- a/screen-write.c +++ b/screen-write.c @@ -1,4 +1,4 @@ -/* $Id $ */ +/* $Id: screen-write.c,v 1.56 2009-07-01 19:14:33 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -325,8 +325,8 @@ screen_write_insertcharacter(struct screen_write_ctx *ctx, u_int nx) if (nx == 0) nx = 1; - if (nx > screen_size_x(s) - 1 - s->cx) - nx = screen_size_x(s) - 1 - s->cx; + if (nx > screen_size_x(s) - s->cx) + nx = screen_size_x(s) - s->cx; if (nx == 0) return; @@ -347,8 +347,8 @@ screen_write_deletecharacter(struct screen_write_ctx *ctx, u_int nx) if (nx == 0) nx = 1; - if (nx > screen_size_x(s) - 1 - s->cx) - nx = screen_size_x(s) - 1 - s->cx; + if (nx > screen_size_x(s) - s->cx) + nx = screen_size_x(s) - s->cx; if (nx == 0) return; @@ -369,8 +369,8 @@ screen_write_insertline(struct screen_write_ctx *ctx, u_int ny) if (ny == 0) ny = 1; - if (ny > screen_size_y(s) - 1 - s->cy) - ny = screen_size_y(s) - 1 - s->cy; + if (ny > screen_size_y(s) - s->cy) + ny = screen_size_y(s) - s->cy; if (ny == 0) return; @@ -395,8 +395,8 @@ screen_write_deleteline(struct screen_write_ctx *ctx, u_int ny) if (ny == 0) ny = 1; - if (ny > screen_size_y(s) - 1 - s->cy) - ny = screen_size_y(s) - 1 - s->cy; + if (ny > screen_size_y(s) - s->cy) + ny = screen_size_y(s) - s->cy; if (ny == 0) return; |