aboutsummaryrefslogtreecommitdiff
path: root/lobject.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-11-06 15:07:12 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-11-06 15:07:12 -0200
commit49a67c6d3f608460f3f59da7972022fbe78b5844 (patch)
tree915e14e5bda89268a749679c072548f927ef159b /lobject.c
parenta921d81033555e1c122834f0cd19bd8a17ac35c0 (diff)
downloadlua-49a67c6d3f608460f3f59da7972022fbe78b5844.tar.gz
lua-49a67c6d3f608460f3f59da7972022fbe78b5844.tar.bz2
lua-49a67c6d3f608460f3f59da7972022fbe78b5844.zip
new macro 'NILCONSTANT' to initialize nil constants
Diffstat (limited to 'lobject.c')
-rw-r--r--lobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lobject.c b/lobject.c
index 88fb0e9e..846d02a7 100644
--- a/lobject.c
+++ b/lobject.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.c,v 2.30 2009/05/27 17:11:27 roberto Exp roberto $ 2** $Id: lobject.c,v 2.31 2009/06/17 17:48:34 roberto Exp roberto $
3** Some generic functions over Lua objects 3** Some generic functions over Lua objects
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -25,7 +25,7 @@
25 25
26 26
27 27
28const TValue luaO_nilobject_ = {{NULL}, LUA_TNIL}; 28const TValue luaO_nilobject_ = {NILCONSTANT};
29 29
30 30
31/* 31/*