Make empty groups in `regex.gmatch` return their offset (#1325)

This makes `regex.gmatch` behave like `string.gmatch`.
This commit is contained in:
Guldoman 2023-01-13 19:34:09 +01:00 committed by George Sokianos
parent e4c5fceaf9
commit b58ba3fede
1 changed files with 4 additions and 1 deletions

View File

@ -91,7 +91,10 @@ static int regex_gmatch_iterator(lua_State *L) {
int total_results = ovector_count * 2;
size_t last_offset = 0;
for (int i = index; i < total_results; i+=2) {
lua_pushlstring(L, state->subject+ovector[i], ovector[i+1] - ovector[i]);
if (ovector[i] == ovector[i+1])
lua_pushinteger(L, ovector[i] + 1);
else
lua_pushlstring(L, state->subject+ovector[i], ovector[i+1] - ovector[i]);
last_offset = ovector[i+1];
total++;
}