diff options
author | pixel <pixel> | 2004-12-27 19:59:05 +0000 |
---|---|---|
committer | pixel <pixel> | 2004-12-27 19:59:05 +0000 |
commit | ecb5155dfed400c50b3b54a758d546b7754bcbf1 (patch) | |
tree | c8545d01f2f8bf414f8d928bac3b60a4c044540f /lib/lua/src | |
parent | ffbd44960ec46c3c0def38821623a62d696c6018 (diff) |
typo...
Diffstat (limited to 'lib/lua/src')
-rw-r--r-- | lib/lua/src/ldo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/lua/src/ldo.c b/lib/lua/src/ldo.c index f1472b2..082b9e6 100644 --- a/lib/lua/src/ldo.c +++ b/lib/lua/src/ldo.c @@ -1,5 +1,5 @@ /* -** $Id: ldo.c,v 1.6 2004-12-27 19:52:23 pixel Exp $ +** $Id: ldo.c,v 1.7 2004-12-27 19:59:05 pixel Exp $ ** Stack and Call structure of Lua ** See Copyright Notice in lua.h */ @@ -349,7 +349,7 @@ static void resume (lua_State *L, void *ud) { static int resume_error (lua_State *L, const char *msg) { L->top = L->ci->base; - setsvalue2s(L->top, lusS_new(L, msg)); + setsvalue2s(L->top, luaS_new(L, msg)); incr_top(L); lua_unlock(L); return LUA_ERRRUN; |