less/less-382-fixline.patch
Jindrich Novy 30a37021c2 - apply better fix for #120916 from Avi Kivity (#177819) to avoid
flickering when '>' is pressed multiple times
2006-01-16 14:20:52 +00:00

29 lines
616 B
Diff

--- less-394/jump.c.fixline 2005-12-03 21:20:32.000000000 +0100
+++ less-394/jump.c 2006-01-16 15:12:00.000000000 +0100
@@ -30,7 +30,7 @@
public void
jump_forw()
{
- POSITION pos;
+ POSITION pos, end_pos;
if (ch_end_seek())
{
@@ -42,11 +42,15 @@ jump_forw()
* Go back one line from the end of the file
* to get to the beginning of the last line.
*/
- pos = back_line(ch_tell());
+ pos = back_line(end_pos = ch_tell());
if (pos == NULL_POSITION)
jump_loc((POSITION)0, sc_height-1);
else
+ {
jump_loc(pos, sc_height-1);
+ if (position(sc_height-1) != end_pos)
+ repaint();
+ }
}
/*