From 8cfffdef41a56db0e2db7b329c5d0c31b2564e3c Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Wed, 10 Aug 2022 22:29:39 -0700 Subject: [PATCH] unnecessary args --- text.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text.lua b/text.lua index ddc5661..555d2c4 100644 --- a/text.lua +++ b/text.lua @@ -207,7 +207,7 @@ function Text.keychord_pressed(State, chord) State.cursor1.line = State.cursor1.line-1 end if Text.lt1(State.cursor1, State.screen_top1) then - local top2 = Text.to2(State, State.screen_top1, State.left, State.right) + local top2 = Text.to2(State, State.screen_top1) top2 = Text.previous_screen_line(State, top2, State.left, State.right) State.screen_top1 = Text.to1(State, top2) Text.redraw_all(State) -- if we're scrolling, reclaim all fragments to avoid memory leaks