summaryrefslogtreecommitdiff
path: root/lib/lace/builtin.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lib/lace/builtin.lua')
-rw-r--r--lib/lace/builtin.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/lace/builtin.lua b/lib/lace/builtin.lua
index 474b333..055c1a1 100644
--- a/lib/lace/builtin.lua
+++ b/lib/lace/builtin.lua
@@ -164,7 +164,7 @@ end
function builtin.define(compcontext, define, name, controltype, ...)
if type(name) ~= "string" then
- return err.error("Expected name, got nothing")
+ return err.error("Expected name, got nothing", {1})
end
if name == "" or name:sub(1,1) == "!" then
@@ -172,7 +172,7 @@ function builtin.define(compcontext, define, name, controltype, ...)
end
if type(controltype) ~= "string" then
- return err.error("Expected control type, got nothing")
+ return err.error("Expected control type, got nothing", {1, 2})
end
local controlfn = _controlfn(compcontext, controltype)