diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2004-04-01 06:52:50 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2004-04-01 06:52:50 +0000 |
commit | d05f95eacbf43766d183f8a916a271b5bf3a6b45 (patch) | |
tree | 30454def47ffe9cfdcd305a9b8d794f650b27151 /www/elinks/files | |
parent | bd5a92c76b36b7e825207895d7d19bd9601e3e5e (diff) |
Notes
Diffstat (limited to 'www/elinks/files')
-rw-r--r-- | www/elinks/files/patch-src::terminal::screen.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/www/elinks/files/patch-src::terminal::screen.c b/www/elinks/files/patch-src::terminal::screen.c new file mode 100644 index 000000000000..ac6dd12b37fc --- /dev/null +++ b/www/elinks/files/patch-src::terminal::screen.c @@ -0,0 +1,12 @@ +--- src/terminal/screen.c Sun Jan 4 02:07:50 2004 ++++ src/terminal/screen.c Fri Feb 20 11:43:54 2004 +@@ -575,6 +575,9 @@ add_char256(struct string *screen, struc + register int x = 0; \ + \ + for (; x < (term_)->width; x++, current++, pos++) { \ ++ if (y == (term_)->height - 1 && \ ++ x == (term_)->width - 1) \ ++ break; \ + if (compare_bg_color(pos->color, current->color)) { \ + /* No update for exact match. */ \ + if (compare_fg_color(pos->color, current->color)\ |