aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-04-17 11:28:06 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-04-17 11:28:06 -0300
commit4f88418170d298b065a7f71d86b1127153919ae9 (patch)
tree7e9c403890b4fe7ac13d501242cfdd967bf0285e /lua.h
parent311e9f3ceb19eefe30a1b5f90dfad9898d8bac74 (diff)
downloadlua-4f88418170d298b065a7f71d86b1127153919ae9.tar.gz
lua-4f88418170d298b065a7f71d86b1127153919ae9.tar.bz2
lua-4f88418170d298b065a7f71d86b1127153919ae9.zip
'CallInfo' stack implemented as double-linked list instead of an array
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua.h b/lua.h
index a55e62b6..fb725765 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.234 2009/03/23 14:26:12 roberto Exp roberto $ 2** $Id: lua.h,v 1.235 2009/04/08 18:04:33 roberto Exp roberto $
3** Lua - An Extensible Extension Language 3** Lua - An Extensible Extension Language
4** Lua.org, PUC-Rio, Brazil (http://www.lua.org) 4** Lua.org, PUC-Rio, Brazil (http://www.lua.org)
5** See Copyright Notice at the end of this file 5** See Copyright Notice at the end of this file
@@ -367,7 +367,7 @@ struct lua_Debug {
367 int lastlinedefined; /* (S) */ 367 int lastlinedefined; /* (S) */
368 char short_src[LUA_IDSIZE]; /* (S) */ 368 char short_src[LUA_IDSIZE]; /* (S) */
369 /* private part */ 369 /* private part */
370 int i_ci; /* active function */ 370 struct CallInfo *i_ci; /* active function */
371}; 371};
372 372
373/* }====================================================================== */ 373/* }====================================================================== */