| 601 | |
| 602 | |
| 603 | l_noret luaG_runerror (lua_State *L, const char *fmt, ...) { |
| 604 | va_list argp; |
| 605 | va_start(argp, fmt); |
| 606 | addinfo(L, luaO_pushvfstring(L, fmt, argp)); |
| 607 | va_end(argp); |
| 608 | luaG_errormsg(L); |
| 609 | } |
| 610 | |
| 611 | |
| 612 | void luaG_traceexec (lua_State *L) { |
no test coverage detected