| 11602 | |
| 11603 | |
| 11604 | static void treatstackoption (lua_State *L, lua_State *L1, const char *fname) { |
| 11605 | if (L == L1) { |
| 11606 | lua_pushvalue(L, -2); |
| 11607 | lua_remove(L, -3); |
| 11608 | } |
| 11609 | else |
| 11610 | lua_xmove(L1, L, 1); |
| 11611 | lua_setfield(L, -2, fname); |
| 11612 | } |
| 11613 | |
| 11614 | |
| 11615 | static int db_getinfo (lua_State *L) { |
no test coverage detected