| 1734 | |
| 1735 | |
| 1736 | static int group_l (lua_State *L) { |
| 1737 | if (lua_isnoneornil(L, 2)) |
| 1738 | return capture_aux(L, Cgroup, 0); |
| 1739 | else { |
| 1740 | luaL_checkstring(L, 2); |
| 1741 | return capture_aux(L, Cgroup, 2); |
| 1742 | } |
| 1743 | } |
| 1744 | |
| 1745 | |
| 1746 | static int position_l (lua_State *L) { |
nothing calls this directly
no test coverage detected