diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-03-18 15:55:45 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-03-18 15:55:45 -0300 |
commit | d872090248f7c90ce8d19af4eda3c0a6727f1261 (patch) | |
tree | 056a5aae39cd0dde1afbb063a786090b5def488f /lstate.c | |
parent | fb0f95a2b77f5be3b7be72c33dda9ad6d8894d4d (diff) | |
download | lua-d872090248f7c90ce8d19af4eda3c0a6727f1261.tar.gz lua-d872090248f7c90ce8d19af4eda3c0a6727f1261.tar.bz2 lua-d872090248f7c90ce8d19af4eda3c0a6727f1261.zip |
small errors in previous `ci' of luaconf.h.
Diffstat (limited to 'lstate.c')
-rw-r--r-- | lstate.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstate.c,v 2.25 2005/02/23 17:30:22 roberto Exp roberto $ | 2 | ** $Id: lstate.c,v 2.26 2005/03/18 18:02:04 roberto Exp roberto $ |
3 | ** Global State | 3 | ** Global State |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -179,7 +179,7 @@ LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) { | |||
179 | L = NULL; | 179 | L = NULL; |
180 | } | 180 | } |
181 | else | 181 | else |
182 | lua_userstateopen(L); | 182 | luai_userstateopen(L); |
183 | return L; | 183 | return L; |
184 | } | 184 | } |
185 | 185 | ||