aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-03-04 18:23:39 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-03-04 18:23:39 -0300
commit5a8bb00df443dfdb5708689f32c64e90f2557bf8 (patch)
treef0328ef79978ce9bd8ceb63fdef2299b74c87490 /lobject.h
parent677188de8aa0c4ed49a3db570f0c9ee7cd641ddc (diff)
downloadlua-5a8bb00df443dfdb5708689f32c64e90f2557bf8.tar.gz
lua-5a8bb00df443dfdb5708689f32c64e90f2557bf8.tar.bz2
lua-5a8bb00df443dfdb5708689f32c64e90f2557bf8.zip
storing chunk "sources" instead of "filenames".
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lobject.h b/lobject.h
index 4c5d0c12..b1221f0e 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.h,v 1.25 1999/01/04 13:37:07 roberto Exp roberto $ 2** $Id: lobject.h,v 1.26 1999/02/03 13:53:48 roberto Exp roberto $
3** Type definitions for Lua objects 3** Type definitions for Lua objects
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -128,7 +128,7 @@ typedef struct TProtoFunc {
128 int nconsts; 128 int nconsts;
129 Byte *code; /* ends with opcode ENDCODE */ 129 Byte *code; /* ends with opcode ENDCODE */
130 int lineDefined; 130 int lineDefined;
131 TaggedString *fileName; 131 TaggedString *source;
132 struct LocVar *locvars; /* ends with line = -1 */ 132 struct LocVar *locvars; /* ends with line = -1 */
133} TProtoFunc; 133} TProtoFunc;
134 134