1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-03-21 22:28:37 -05:00

Make save_scroll() static.

[originally from svn r2766]
This commit is contained in:
Ben Harris 2003-02-01 15:42:01 +00:00
parent f26b7aa0d3
commit 21275897d2

View File

@ -804,7 +804,7 @@ static void scroll(Terminal *term, int topline, int botline, int lines, int sb)
* If the scroll is on the same area as the last scroll in the list, * If the scroll is on the same area as the last scroll in the list,
* merge them. * merge them.
*/ */
void save_scroll(Terminal *term, int topline, int botline, int lines) static void save_scroll(Terminal *term, int topline, int botline, int lines)
{ {
struct scrollregion *newscroll; struct scrollregion *newscroll;
if (term->scrolltail && if (term->scrolltail &&