diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-03-27 17:10:21 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-03-27 17:10:21 -0300 |
commit | b53dc0c4853c56694dda727793e5f6188de39dd8 (patch) | |
tree | d574df00c35228687d2accd314c1065cf0f42bff /lbuiltin.c | |
parent | 63e230a16bd030d11d041dfbec7a8a9bf0152b1e (diff) | |
download | lua-b53dc0c4853c56694dda727793e5f6188de39dd8.tar.gz lua-b53dc0c4853c56694dda727793e5f6188de39dd8.tar.bz2 lua-b53dc0c4853c56694dda727793e5f6188de39dd8.zip |
TAG_ARRAY -> TAG_TABLE
Diffstat (limited to 'lbuiltin.c')
-rw-r--r-- | lbuiltin.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lbuiltin.c,v 1.97 2000/03/24 17:26:08 roberto Exp roberto $ | 2 | ** $Id: lbuiltin.c,v 1.98 2000/03/27 20:08:02 roberto Exp roberto $ |
3 | ** Built-in functions | 3 | ** Built-in functions |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -380,7 +380,7 @@ void luaB_tostring (lua_State *L) { | |||
380 | case TAG_STRING: | 380 | case TAG_STRING: |
381 | lua_pushobject(L, o); | 381 | lua_pushobject(L, o); |
382 | return; | 382 | return; |
383 | case TAG_ARRAY: | 383 | case TAG_TABLE: |
384 | sprintf(buff, "table: %p", o->value.a); | 384 | sprintf(buff, "table: %p", o->value.a); |
385 | break; | 385 | break; |
386 | case TAG_LCLOSURE: case TAG_CCLOSURE: | 386 | case TAG_LCLOSURE: case TAG_CCLOSURE: |