aboutsummaryrefslogtreecommitdiff
path: root/lstate.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-03-10 14:14:37 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-03-10 14:14:37 -0300
commitba484b9eb16dd62a7c3a5400a66eb952b654d3f0 (patch)
tree31692ddf85265e5a46eab0cd55a0b0757a225e68 /lstate.c
parentf9d015523ef48266cea37e13717c223c16941b23 (diff)
downloadlua-ba484b9eb16dd62a7c3a5400a66eb952b654d3f0.tar.gz
lua-ba484b9eb16dd62a7c3a5400a66eb952b654d3f0.tar.bz2
lua-ba484b9eb16dd62a7c3a5400a66eb952b654d3f0.zip
yielding across lua_call (first version)
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 e1a3237b..df62f3e3 100644
--- a/lstate.c
+++ b/lstate.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.c,v 2.48 2009/02/17 19:47:58 roberto Exp roberto $ 2** $Id: lstate.c,v 2.49 2009/02/18 17:20:56 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*/
@@ -95,7 +95,7 @@ static void preinit_state (lua_State *L, global_State *g) {
95 resethookcount(L); 95 resethookcount(L);
96 L->openupval = NULL; 96 L->openupval = NULL;
97 L->size_ci = 0; 97 L->size_ci = 0;
98 L->baseCcalls = 0; 98 L->nny = 1;
99 L->status = LUA_OK; 99 L->status = LUA_OK;
100 L->base_ci = L->ci = NULL; 100 L->base_ci = L->ci = NULL;
101 L->savedpc = NULL; 101 L->savedpc = NULL;