diff options
Diffstat (limited to 'builtin/vector.lua')
-rw-r--r-- | builtin/vector.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/vector.lua b/builtin/vector.lua index 2fd926a..95e1ebd 100644 --- a/builtin/vector.lua +++ b/builtin/vector.lua @@ -1,7 +1,7 @@ --[[ builtin/vector.lua ]]-- local function wrap(op, body_wrapper, ...) - return load("return function(a, b) " .. body_wrapper(op, ...) .. "end")() + return loadstring("return function(a, b) " .. body_wrapper(op, ...) .. "end")() end local function arith_mt(...) |