aboutsummaryrefslogtreecommitdiff
path: root/table.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1995-10-26 12:21:56 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1995-10-26 12:21:56 -0200
commit15d48576ea737d51e579f101a870e37f62b81f22 (patch)
treeed2390188cfb5304d366696262ccda593f3e8589 /table.h
parent39b071f7b13e6ed6eff4a0f0471d2450a9c48084 (diff)
downloadlua-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.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/table.h b/table.h
index d0093dad..f38ea668 100644
--- a/table.h
+++ b/table.h
@@ -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);
25int lua_markobject (Object *o); 25int lua_markobject (Object *o);
26void lua_pack (void); 26void lua_pack (void);
27 27
28void luaI_funcInfo (Object *func, char **filename, char **funcname,
29 char **objname, int *linedefined);
30 28
31#endif 29#endif