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.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 | ||