From e4e12c77ad2ade64563c97471852b6822766b39e Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sun, 12 Jun 2022 07:20:14 -0700 Subject: fix a second BSOD in #4 :/ I need more tests. --- select.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/select.lua b/select.lua index db875e3..a238c7c 100644 --- a/select.lua +++ b/select.lua @@ -95,7 +95,7 @@ end function Text.to_pos(x,y) for line_index,line in ipairs(Lines) do if line.mode == 'text' then - if Text.in_line(line, x,y) then + if Text.in_line(line_index,line, x,y) then return line_index, Text.to_pos_on_line(line, x,y) end end -- cgit 1.4.1-2-gfad0 ce94398f8c722e335f20d5a4a30c8a'/> Unnamed repository; edit this file 'description' to name the repository.
about summary refs log blame commit diff stats
path: root/README
blob: 4860bbe53e4101c125319ff65857917f01e1da33 (plain) (tree)
1
2
3
4
5
6
7
8