new macro 'NILCONSTANT' to initialize nil constants

This commit is contained in:
Roberto Ierusalimschy
2009-11-06 15:07:12 -02:00
parent a921d81033
commit 49a67c6d3f
2 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lobject.c,v 2.30 2009/05/27 17:11:27 roberto Exp roberto $
** $Id: lobject.c,v 2.31 2009/06/17 17:48:34 roberto Exp roberto $
** Some generic functions over Lua objects
** See Copyright Notice in lua.h
*/
@@ -25,7 +25,7 @@
const TValue luaO_nilobject_ = {{NULL}, LUA_TNIL};
const TValue luaO_nilobject_ = {NILCONSTANT};
/*