aboutsummaryrefslogtreecommitdiff
path: root/src/lj_errmsg.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lj_errmsg.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lj_errmsg.h b/src/lj_errmsg.h
index dd3eefa8..c07d4387 100644
--- a/src/lj_errmsg.h
+++ b/src/lj_errmsg.h
@@ -134,8 +134,11 @@ ERRDEF(XFUNARG, "function arguments expected")
134ERRDEF(XSYMBOL, "unexpected symbol") 134ERRDEF(XSYMBOL, "unexpected symbol")
135ERRDEF(XDOTS, "cannot use " LUA_QL("...") " outside a vararg function") 135ERRDEF(XDOTS, "cannot use " LUA_QL("...") " outside a vararg function")
136ERRDEF(XSYNTAX, "syntax error") 136ERRDEF(XSYNTAX, "syntax error")
137ERRDEF(XBREAK, "no loop to break")
138ERRDEF(XFOR, LUA_QL("=") " or " LUA_QL("in") " expected") 137ERRDEF(XFOR, LUA_QL("=") " or " LUA_QL("in") " expected")
138ERRDEF(XBREAK, "no loop to break")
139ERRDEF(XLUNDEF, "undefined label " LUA_QS)
140ERRDEF(XLDUP, "duplicate label " LUA_QS)
141ERRDEF(XGSCOPE, "<goto %s> jumps into the scope of local " LUA_QS)
139 142
140/* Bytecode reader errors. */ 143/* Bytecode reader errors. */
141ERRDEF(BCFMT, "cannot load incompatible bytecode") 144ERRDEF(BCFMT, "cannot load incompatible bytecode")