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.lua6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/lace/builtin.lua b/lib/lace/builtin.lua
index 03fe7bc..e6c02f1 100644
--- a/lib/lace/builtin.lua
+++ b/lib/lace/builtin.lua
@@ -183,11 +183,7 @@ function builtin.define(compcontext, define, name, controltype, ...)
local ctrltab, msg = controlfn(compcontext, controltype, ...)
if type(ctrltab) ~= "table" then
-- offset all the words in the error by 2 (for define and name)
- if msg.words then
- for i = 1, #msg.words do
- msg.words[i] = msg.words[i] + 2
- end
- end
+ msg = err.offset(msg, 2)
return false, msg
end