remove table nil handling

bugfix171
ray-x 2 years ago
parent be6da35767
commit 4c5d0e67d0

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

Loading…
Cancel
Save