| 14679 | |
| 14680 | |
| 14681 | static void addfield (lua_State *L, luaL_Buffer *b, int i) { |
| 14682 | lua_rawgeti(L, 1, i); |
| 14683 | if (!lua_isstring(L, -1)) |
| 14684 | luaL_error(L, "invalid value (%s) at index %d in table for " |
| 14685 | LUA_QL("concat"), luaL_typename(L, -1), i); |
| 14686 | luaL_addvalue(b); |
| 14687 | } |
| 14688 | |
| 14689 | |
| 14690 | static int tconcat (lua_State *L) { |
no test coverage detected