diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-05-05 15:49:56 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-05-05 15:49:56 -0300 |
| commit | 237f755dca9a4fd105ec0c1b0b402c7923daceba (patch) | |
| tree | e25eff3c37c30e7d544e740058e80db71360830a /lvm.c | |
| parent | 7444b5a1d5f66e8af031b575ec1c264e6937980d (diff) | |
| download | lua-237f755dca9a4fd105ec0c1b0b402c7923daceba.tar.gz lua-237f755dca9a4fd105ec0c1b0b402c7923daceba.tar.bz2 lua-237f755dca9a4fd105ec0c1b0b402c7923daceba.zip | |
typos in comments
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.115 2010/04/19 17:58:46 roberto Exp roberto $ | 2 | ** $Id: lvm.c,v 2.116 2010/05/04 17:25:19 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 | */ |
| @@ -751,7 +751,7 @@ void luaV_execute (lua_State *L) { | |||
| 751 | h = hvalue(ra); | 751 | h = hvalue(ra); |
| 752 | last = ((c-1)*LFIELDS_PER_FLUSH) + n; | 752 | last = ((c-1)*LFIELDS_PER_FLUSH) + n; |
| 753 | if (last > h->sizearray) /* needs more space? */ | 753 | if (last > h->sizearray) /* needs more space? */ |
| 754 | luaH_resizearray(L, h, last); /* pre-alloc it at once */ | 754 | luaH_resizearray(L, h, last); /* pre-allocate it at once */ |
| 755 | for (; n > 0; n--) { | 755 | for (; n > 0; n--) { |
| 756 | TValue *val = ra+n; | 756 | TValue *val = ra+n; |
| 757 | setobj2t(L, luaH_setint(L, h, last--), val); | 757 | setobj2t(L, luaH_setint(L, h, last--), val); |
