Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Sys Quatre 2021-01-19 23:31:23 +01:00
commit cd9c345420
1 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ s = {
end
local tocopy = {}
local frmln = #fromprefix
for name,v in pairs(thread.vars) do
for name in pairs(thread.vars) do
if name:sub(1, frmln) == fromprefix then
tocopy[#tocopy+1] = name:sub(frmln+1)
end
@ -89,7 +89,7 @@ s = {
end
end,
mul = function(params)
mul = function(params, faden)
local p1,p2 = unpack(params)
local t1 = type(p1)
local t2 = type(p2)