about summary refs log tree commit diff stats
path: root/select.lua
diff options
context:
space:
mode:
Diffstat (limited to 'select.lua')
-rw-r--r--select.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/select.lua b/select.lua
index 9e87081..a728f84 100644
--- a/select.lua
+++ b/select.lua
@@ -94,7 +94,7 @@ function Text.to_pos(State, x,y)
   for line_index,line in ipairs(State.lines) do
     if line.mode == 'text' then
       if Text.in_line(State, line_index, x,y) then
-        return line_index, Text.to_pos_on_line(State, line, x,y)
+        return line_index, Text.to_pos_on_line(State, line_index, x,y)
       end
     end
   end