diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1995-10-26 12:21:56 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1995-10-26 12:21:56 -0200 |
commit | 15d48576ea737d51e579f101a870e37f62b81f22 (patch) | |
tree | ed2390188cfb5304d366696262ccda593f3e8589 /table.h | |
parent | 39b071f7b13e6ed6eff4a0f0471d2450a9c48084 (diff) | |
download | lua-15d48576ea737d51e579f101a870e37f62b81f22.tar.gz lua-15d48576ea737d51e579f101a870e37f62b81f22.tar.bz2 lua-15d48576ea737d51e579f101a870e37f62b81f22.zip |
functions now may be declared with any "var" as a name;
therefore they do not have a "baptism" name.
Changes in debug API to acomodate that.
Diffstat (limited to 'table.h')
-rw-r--r-- | table.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | ** Module to control static tables | 2 | ** Module to control static tables |
3 | ** TeCGraf - PUC-Rio | 3 | ** TeCGraf - PUC-Rio |
4 | ** $Id: table.h,v 2.11 1995/10/13 15:16:25 roberto Exp roberto $ | 4 | ** $Id: table.h,v 2.12 1995/10/17 11:58:41 roberto Exp roberto $ |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #ifndef table_h | 7 | #ifndef table_h |
@@ -25,7 +25,5 @@ Word luaI_findconstantbyname (char *name); | |||
25 | int lua_markobject (Object *o); | 25 | int lua_markobject (Object *o); |
26 | void lua_pack (void); | 26 | void lua_pack (void); |
27 | 27 | ||
28 | void luaI_funcInfo (Object *func, char **filename, char **funcname, | ||
29 | char **objname, int *linedefined); | ||
30 | 28 | ||
31 | #endif | 29 | #endif |