aboutsummaryrefslogtreecommitdiff
path: root/lstate.c
diff options
context:
space:
mode:
Diffstat (limited to 'lstate.c')
-rw-r--r--lstate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lstate.c b/lstate.c
index 7779f544..633e4ab6 100644
--- a/lstate.c
+++ b/lstate.c
@@ -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