| 700 | |
| 701 | |
| 702 | const char *luaO_pushfstring (lua_State *L, const char *fmt, ...) { |
| 703 | const char *msg; |
| 704 | va_list argp; |
| 705 | va_start(argp, fmt); |
| 706 | msg = luaO_pushvfstring(L, fmt, argp); |
| 707 | va_end(argp); |
| 708 | if (msg == NULL) /* error? */ |
| 709 | luaD_throw(L, LUA_ERRMEM); |
| 710 | return msg; |
| 711 | } |
| 712 | |
| 713 | /* }================================================================== */ |
| 714 |
no test coverage detected