From 76dbb4bd1eee8c650ccc5bd94f95666045032285 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Thu, 19 May 2022 08:17:34 -0700 Subject: [PATCH] drop unused arg --- text.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text.lua b/text.lua index a2cfecb..1b78251 100644 --- a/text.lua +++ b/text.lua @@ -200,7 +200,7 @@ function Text.in_line(line, x,y) return x >= 16 and y >= line.y and y < line.y+15*Zoom end -function Text.move_cursor(line_index, line, x, hint) +function Text.move_cursor(line_index, line, x) Cursor_line = line_index Cursor_pos = Text.nearest_cursor_pos(line.data, x) end