forked from mtcontrib/pdisc
Add a missing parameter to mul
This commit is contained in:
parent
44a870b098
commit
948e6e3a8f
@ -34,7 +34,7 @@ s = {
|
|||||||
end
|
end
|
||||||
local tocopy = {}
|
local tocopy = {}
|
||||||
local frmln = #fromprefix
|
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
|
if name:sub(1, frmln) == fromprefix then
|
||||||
tocopy[#tocopy+1] = name:sub(frmln+1)
|
tocopy[#tocopy+1] = name:sub(frmln+1)
|
||||||
end
|
end
|
||||||
@ -89,7 +89,7 @@ s = {
|
|||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
|
|
||||||
mul = function(params)
|
mul = function(params, faden)
|
||||||
local p1,p2 = unpack(params)
|
local p1,p2 = unpack(params)
|
||||||
local t1 = type(p1)
|
local t1 = type(p1)
|
||||||
local t2 = type(p2)
|
local t2 = type(p2)
|
||||||
|
Loading…
Reference in New Issue
Block a user