+2010-01-04 Chris Allegretta <chrisa@asty.org>
+ * winio.c: edit_update, edit_redraw - Fix search not scrolling to the middle of the screen
+ (reported by alpha@qzx.com) and places where we rely on maxrows but should not.
+
2009-12-26 Jordi Mallach <jordi@gnu.org>
* doc/man/nano.1: Avoid a groff warning by prepending a zero-width
space to a line starting with '.
}
/* When edittop changes, try and figure out how many lines
- * we really have to work with (i.e. set maxrows)
+ * we really have to work with (i.e. set maxrows)
*/
void compute_maxrows(void)
{
/* Put edittop in range of current, get the difference in lines
* between the original edittop and the current edittop, and
* then restore the original edittop. */
- edit_update(NONE);
+ edit_update(CENTER);
nlines = openfile->edittop->lineno - old_edittop->lineno;
/* Put the top line of the edit window in range of the current
* line. */
- edit_update(NONE);
+ edit_update(CENTER);
}
foo = openfile->edittop;
* screen as before, or at the top or bottom of the screen if
* edittop is beyond either. */
if (location == CENTER)
- goal = maxrows / 2;
+ goal = editwinrows / 2;
else {
goal = openfile->current_y;
/* Limit goal to (editwinrows - 1) lines maximum. */
- if (goal > maxrows - 1)
- goal = maxrows - 1;
+ if (goal > editwinrows - 1)
+ goal = editwinrows - 1;
}
for (; goal > 0 && foo->prev != NULL; goal--) {