diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2015-03-30 12:45:01 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2015-03-30 12:45:01 -0300 |
commit | abb2f5511d0cc2cabf9a1bf82f47a72e62f59e4f (patch) | |
tree | a5198d7a9f739d5f32967d028be38216067071ee | |
parent | fcc6e1220e8600502d463fc8e785849450c18db9 (diff) | |
download | lua-abb2f5511d0cc2cabf9a1bf82f47a72e62f59e4f.tar.gz lua-abb2f5511d0cc2cabf9a1bf82f47a72e62f59e4f.tar.bz2 lua-abb2f5511d0cc2cabf9a1bf82f47a72e62f59e4f.zip |
detail ('b + base' -> 'base + b' to follow all other similar uses)
-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.236 2015/03/02 16:04:52 roberto Exp roberto $ | 2 | ** $Id: lvm.c,v 2.237 2015/03/07 19:30:16 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 | */ |
@@ -917,7 +917,7 @@ void luaV_execute (lua_State *L) { | |||
917 | L->top = base + c + 1; /* mark the end of concat operands */ | 917 | L->top = base + c + 1; /* mark the end of concat operands */ |
918 | Protect(luaV_concat(L, c - b + 1)); | 918 | Protect(luaV_concat(L, c - b + 1)); |
919 | ra = RA(i); /* 'luav_concat' may invoke TMs and move the stack */ | 919 | ra = RA(i); /* 'luav_concat' may invoke TMs and move the stack */ |
920 | rb = b + base; | 920 | rb = base + b; |
921 | setobjs2s(L, ra, rb); | 921 | setobjs2s(L, ra, rb); |
922 | checkGC(L, (ra >= rb ? ra + 1 : rb)); | 922 | checkGC(L, (ra >= rb ? ra + 1 : rb)); |
923 | L->top = ci->top; /* restore top */ | 923 | L->top = ci->top; /* restore top */ |