diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-07-17 13:25:13 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-07-17 13:25:13 -0300 |
commit | 79c8edb6c423b48270c1f61df6fd5a889ca5da0e (patch) | |
tree | 1b79c096472f5f799f5576561e831b0d992c8cd0 /ltm.c | |
parent | e5146fb01f1ccb40c2663e745feffbf642cbf862 (diff) | |
download | lua-79c8edb6c423b48270c1f61df6fd5a889ca5da0e.tar.gz lua-79c8edb6c423b48270c1f61df6fd5a889ca5da0e.tar.bz2 lua-79c8edb6c423b48270c1f61df6fd5a889ca5da0e.zip |
new names for light userdata operations
Diffstat (limited to '')
-rw-r--r-- | ltm.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltm.c,v 1.96 2002/06/24 20:17:59 roberto Exp roberto $ | 2 | ** $Id: ltm.c,v 1.97 2002/06/25 19:17:22 roberto Exp roberto $ |
3 | ** Tag methods | 3 | ** Tag methods |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -19,7 +19,7 @@ | |||
19 | 19 | ||
20 | const char *const luaT_typenames[] = { | 20 | const char *const luaT_typenames[] = { |
21 | "nil", "number", "string", "boolean", "table", | 21 | "nil", "number", "string", "boolean", "table", |
22 | "userdata", "userdata", "function" | 22 | "function", "userdata", "userdata" |
23 | }; | 23 | }; |
24 | 24 | ||
25 | 25 | ||