diff options
-rw-r--r-- | init.lua | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -24,10 +24,8 @@ local count local char_next = 17 local function at_or_after(_, _, pos, start, finish, is_number) - if start and finish then - if pos >= start and pos < finish or is_number and pos < start then - return true, start, finish - end + if pos >= start and pos < finish or is_number and pos < start then + return true, start, finish end end |