summaryrefslogtreecommitdiff
path: root/src/lib_string.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lib_string.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib_string.c b/src/lib_string.c
index b6a4864b..ab353c20 100644
--- a/src/lib_string.c
+++ b/src/lib_string.c
@@ -536,8 +536,7 @@ LJLIB_CF(string_gmatch)
536 lj_lib_checkstr(L, 2); 536 lj_lib_checkstr(L, 2);
537 L->top = L->base+3; 537 L->top = L->base+3;
538 (L->top-1)->u64 = 0; 538 (L->top-1)->u64 = 0;
539 lua_pushcclosure(L, lj_cf_string_gmatch_aux, 3); 539 lj_lib_pushcc(L, lj_cf_string_gmatch_aux, FF_string_gmatch_aux, 3);
540 funcV(L->top-1)->c.ffid = FF_string_gmatch_aux;
541 return 1; 540 return 1;
542} 541}
543 542