diff options
Diffstat (limited to '')
-rw-r--r-- | src/lj_errmsg.h | 5 |
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") | |||
134 | ERRDEF(XSYMBOL, "unexpected symbol") | 134 | ERRDEF(XSYMBOL, "unexpected symbol") |
135 | ERRDEF(XDOTS, "cannot use " LUA_QL("...") " outside a vararg function") | 135 | ERRDEF(XDOTS, "cannot use " LUA_QL("...") " outside a vararg function") |
136 | ERRDEF(XSYNTAX, "syntax error") | 136 | ERRDEF(XSYNTAX, "syntax error") |
137 | ERRDEF(XBREAK, "no loop to break") | ||
138 | ERRDEF(XFOR, LUA_QL("=") " or " LUA_QL("in") " expected") | 137 | ERRDEF(XFOR, LUA_QL("=") " or " LUA_QL("in") " expected") |
138 | ERRDEF(XBREAK, "no loop to break") | ||
139 | ERRDEF(XLUNDEF, "undefined label " LUA_QS) | ||
140 | ERRDEF(XLDUP, "duplicate label " LUA_QS) | ||
141 | ERRDEF(XGSCOPE, "<goto %s> jumps into the scope of local " LUA_QS) | ||
139 | 142 | ||
140 | /* Bytecode reader errors. */ | 143 | /* Bytecode reader errors. */ |
141 | ERRDEF(BCFMT, "cannot load incompatible bytecode") | 144 | ERRDEF(BCFMT, "cannot load incompatible bytecode") |