remove table nil handling

pull/205/head
ray-x 2 years ago
parent be6da35767
commit 4c5d0e67d0

@ -525,7 +525,7 @@ function M.dedup(locations)
end
end
for i = #del, 1, -1 do
locations = table.remove(locations, del[i])
table.remove(locations, del[i])
end
return locations
end

Loading…
Cancel
Save