lua 5.4.5 :

- ricompilazione per nuova versione.
This commit is contained in:
DarioS
2023-05-03 09:38:47 +02:00
parent 47789a0a7d
commit 19f4e327e6
41 changed files with 996 additions and 741 deletions
+1 -1
View File
@@ -570,7 +570,7 @@ static const char *match_capture (MatchState *ms, const char *s, int l) {
static const char *match (MatchState *ms, const char *s, const char *p) {
if (l_unlikely(ms->matchdepth-- == 0))
luaL_error(ms->L, "pattern too complex");
init: /* using goto's to optimize tail recursion */
init: /* using goto to optimize tail recursion */
if (p != ms->p_end) { /* end of pattern? */
switch (*p) {
case '(': { /* start capture */