diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-01-09 18:23:19 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-01-09 18:23:19 -0200 |
commit | bf006eeaf5d0d014c2da135269165051b74ffdc8 (patch) | |
tree | 8b1bce83ea77c1ea1cc5b5c20cb4540ff35d9d93 /table.c | |
parent | b2afc410fa395900a0e620cfa7abc73754ac974f (diff) | |
download | lua-bf006eeaf5d0d014c2da135269165051b74ffdc8.tar.gz lua-bf006eeaf5d0d014c2da135269165051b74ffdc8.tar.bz2 lua-bf006eeaf5d0d014c2da135269165051b74ffdc8.zip |
"getobjectname" got a "lua_" prefix.
Diffstat (limited to 'table.c')
-rw-r--r-- | table.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,7 +3,7 @@ | |||
3 | ** Module to control static tables | 3 | ** Module to control static tables |
4 | */ | 4 | */ |
5 | 5 | ||
6 | char *rcs_table="$Id: table.c,v 2.37 1995/10/26 14:21:56 roberto Exp roberto $"; | 6 | char *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 | ||
273 | char *getobjname (lua_Object o, char **name) | 273 | char *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) |