aboutsummaryrefslogtreecommitdiff
path: root/lvm.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2015-11-19 17:16:22 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2015-11-19 17:16:22 -0200
commitd103312661d4d2428516924658154df09b3168a4 (patch)
treedc2318e0bb95abd9776b57ec73f2f9a0c01586e5 /lvm.c
parent2e8f8a18e4ddbb3bebd8e81e276fc37bce02e422 (diff)
downloadlua-d103312661d4d2428516924658154df09b3168a4.tar.gz
lua-d103312661d4d2428516924658154df09b3168a4.tar.bz2
lua-d103312661d4d2428516924658154df09b3168a4.zip
details (typos in comments)
Diffstat (limited to 'lvm.c')
-rw-r--r--lvm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lvm.c b/lvm.c
index 93ba0169..c0200623 100644
--- a/lvm.c
+++ b/lvm.c
@@ -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));