aboutsummaryrefslogtreecommitdiff
path: root/table.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-01-09 18:23:19 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-01-09 18:23:19 -0200
commitbf006eeaf5d0d014c2da135269165051b74ffdc8 (patch)
tree8b1bce83ea77c1ea1cc5b5c20cb4540ff35d9d93 /table.c
parentb2afc410fa395900a0e620cfa7abc73754ac974f (diff)
downloadlua-bf006eeaf5d0d014c2da135269165051b74ffdc8.tar.gz
lua-bf006eeaf5d0d014c2da135269165051b74ffdc8.tar.bz2
lua-bf006eeaf5d0d014c2da135269165051b74ffdc8.zip
"getobjectname" got a "lua_" prefix.
Diffstat (limited to 'table.c')
-rw-r--r--table.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/table.c b/table.c
index c48662c7..41fbf8ab 100644
--- a/table.c
+++ b/table.c
@@ -3,7 +3,7 @@
3** Module to control static tables 3** Module to control static tables
4*/ 4*/
5 5
6char *rcs_table="$Id: table.c,v 2.37 1995/10/26 14:21:56 roberto Exp roberto $"; 6char *rcs_table="$Id: table.c,v 2.38 1995/11/03 15:30:50 roberto Exp roberto $";
7 7
8/*#include <string.h>*/ 8/*#include <string.h>*/
9 9
@@ -270,7 +270,7 @@ static int checkfunc (Object *o)
270} 270}
271 271
272 272
273char *getobjname (lua_Object o, char **name) 273char *lua_getobjname (lua_Object o, char **name)
274{ /* try to find a name for given function */ 274{ /* try to find a name for given function */
275 functofind = luaI_Address(o); 275 functofind = luaI_Address(o);
276 if ((*name = luaI_travfallbacks(checkfunc)) != NULL) 276 if ((*name = luaI_travfallbacks(checkfunc)) != NULL)