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.
This commit is contained in:
Roberto Ierusalimschy
1995-10-26 12:21:56 -02:00
parent 39b071f7b1
commit 15d48576ea
8 changed files with 140 additions and 127 deletions

View File

@@ -1,7 +1,7 @@
/*
** Module to control static tables
** TeCGraf - PUC-Rio
** $Id: table.h,v 2.11 1995/10/13 15:16:25 roberto Exp roberto $
** $Id: table.h,v 2.12 1995/10/17 11:58:41 roberto Exp roberto $
*/
#ifndef table_h
@@ -25,7 +25,5 @@ Word luaI_findconstantbyname (char *name);
int lua_markobject (Object *o);
void lua_pack (void);
void luaI_funcInfo (Object *func, char **filename, char **funcname,
char **objname, int *linedefined);
#endif