aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
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/* }====================================================================== */