aboutsummaryrefslogtreecommitdiff
path: root/lvm.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-10-29 15:52:46 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-10-29 15:52:46 -0200
commitfdd5f2f7a32535eb8f2fbafbed2d84c0e69392c0 (patch)
tree6a546b664d3abca7bddc9e650dc9062fed430c4c /lvm.c
parentc6ef3e2672859a26bb5f0ab5fa3f99a3fb32d5b4 (diff)
downloadlua-fdd5f2f7a32535eb8f2fbafbed2d84c0e69392c0.tar.gz
lua-fdd5f2f7a32535eb8f2fbafbed2d84c0e69392c0.tar.bz2
lua-fdd5f2f7a32535eb8f2fbafbed2d84c0e69392c0.zip
comment typos
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 5c15c353..a20367ad 100644
--- a/lvm.c
+++ b/lvm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.c,v 2.123 2010/06/30 14:11:17 roberto Exp roberto $ 2** $Id: lvm.c,v 2.124 2010/10/25 19:01:37 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*/
@@ -301,7 +301,7 @@ void luaV_concat (lua_State *L, int total) {
301 setsvalue2s(L, top-n, luaS_newlstr(L, buffer, tl)); 301 setsvalue2s(L, top-n, luaS_newlstr(L, buffer, tl));
302 } 302 }
303 total -= n-1; /* got 'n' strings to create 1 new */ 303 total -= n-1; /* got 'n' strings to create 1 new */
304 L->top -= n-1; /* poped 'n' strings and pushed one */ 304 L->top -= n-1; /* popped 'n' strings and pushed one */
305 } while (total > 1); /* repeat until only 1 result left */ 305 } while (total > 1); /* repeat until only 1 result left */
306} 306}
307 307