aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-12-14 16:33:29 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-12-14 16:33:29 -0200
commit1b15206cf9aa7005fc3d48f78f60f66838f10eb5 (patch)
tree00a96c96d331417ba781b605c6c10d8daae01938 /lobject.h
parente6d56cd2d844174bd40af4c44c0f68e2115e5876 (diff)
downloadlua-1b15206cf9aa7005fc3d48f78f60f66838f10eb5.tar.gz
lua-1b15206cf9aa7005fc3d48f78f60f66838f10eb5.tar.bz2
lua-1b15206cf9aa7005fc3d48f78f60f66838f10eb5.zip
many details + code redistribution
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lobject.h b/lobject.h
index d644d2ea..8c6b63f1 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.h,v 1.38 1999/11/26 18:59:20 roberto Exp roberto $ 2** $Id: lobject.h,v 1.39 1999/12/02 16:24:45 roberto Exp roberto $
3** Type definitions for Lua objects 3** Type definitions for Lua objects
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -197,7 +197,7 @@ typedef struct Hash {
197 197
198extern const char *const luaO_typenames[]; 198extern const char *const luaO_typenames[];
199 199
200#define luaO_typename(L, o) luaO_typenames[-ttype(o)] 200#define luaO_typename(o) luaO_typenames[-ttype(o)]
201 201
202#define MINPOWER2 4 /* minimum size for "growing" vectors */ 202#define MINPOWER2 4 /* minimum size for "growing" vectors */
203 203