diff options
Diffstat (limited to 'lvm.c')
-rw-r--r-- | lvm.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.c,v 2.262 2015/11/13 13:24:26 roberto Exp roberto $ | 2 | ** $Id: lvm.c,v 2.263 2015/11/17 16:00:28 roberto Exp roberto $ |
3 | ** Lua virtual machine | 3 | ** Lua virtual machine |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -1051,7 +1051,7 @@ void luaV_execute (lua_State *L) { | |||
1051 | StkId rb; | 1051 | StkId rb; |
1052 | L->top = base + c + 1; /* mark the end of concat operands */ | 1052 | L->top = base + c + 1; /* mark the end of concat operands */ |
1053 | Protect(luaV_concat(L, c - b + 1)); | 1053 | Protect(luaV_concat(L, c - b + 1)); |
1054 | ra = RA(i); /* 'luav_concat' may invoke TMs and move the stack */ | 1054 | ra = RA(i); /* 'luaV_concat' may invoke TMs and move the stack */ |
1055 | rb = base + b; | 1055 | rb = base + b; |
1056 | setobjs2s(L, ra, rb); | 1056 | setobjs2s(L, ra, rb); |
1057 | checkGC(L, (ra >= rb ? ra + 1 : rb)); | 1057 | checkGC(L, (ra >= rb ? ra + 1 : rb)); |