aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-12-02 14:24:45 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-12-02 14:24:45 -0200
commit8223ff473f3ffe782629fb1ba9ce1f96efeb7fd4 (patch)
tree94d59b8fcc1845002f8972f46069140cee7079c0 /lobject.h
parentfe237ad8085f34e89fcd3610a9771215af63f03f (diff)
downloadlua-8223ff473f3ffe782629fb1ba9ce1f96efeb7fd4.tar.gz
lua-8223ff473f3ffe782629fb1ba9ce1f96efeb7fd4.tar.bz2
lua-8223ff473f3ffe782629fb1ba9ce1f96efeb7fd4.zip
lua_Object is a pointer to the stack (because now the stack doen't move)
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lobject.h b/lobject.h
index d286095f..d644d2ea 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.h,v 1.37 1999/11/22 13:12:07 roberto Exp roberto $ 2** $Id: lobject.h,v 1.38 1999/11/26 18:59:20 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*/
@@ -26,6 +26,8 @@
26#endif 26#endif
27 27
28 28
29#define UNUSED(x) (void)x /* to avoid warnings */
30
29/* 31/*
30** "real" is the type "number" of Lua 32** "real" is the type "number" of Lua
31** GREP LUA_NUMBER to change that 33** GREP LUA_NUMBER to change that