From 4fd1c1253cd182e9aced3e96490d1a8347aae312 Mon Sep 17 00:00:00 2001 From: jxnshi Date: Fri, 24 Jan 2025 18:55:59 +0100 Subject: [PATCH] Fix --- st.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/st.c b/st.c index 53e977c..b35b189 100644 --- a/st.c +++ b/st.c @@ -1127,7 +1127,7 @@ tscrolldown(int orig, int n, int copyhist) } void -+tscrollup(int orig, int n, int copyhist) +tscrollup(int orig, int n, int copyhist) { int i; Line temp; @@ -2373,7 +2373,7 @@ eschandle(uchar ascii) return 0; case 'D': /* IND -- Linefeed */ if (term.c.y == term.bot) { - tscrollup(term.top, 1); + tscrollup(term.top, 1, 1); } else { tmoveto(term.c.x, term.c.y+1); } -- 2.49.0