/* 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(
-#ifndef NANO_TINY
- ISSET(SMOOTH_SCROLL) ? NONE :
-#endif
- CENTER);
+ edit_update(NONE);
nlines = openfile->edittop->lineno - old_edittop->lineno;
/* Put the top line of the edit window in range of the current
* line. */
- edit_update(
-#ifndef NANO_TINY
- ISSET(SMOOTH_SCROLL) ? NONE :
-#endif
- CENTER);
+ edit_update(NONE);
}
foo = openfile->edittop;