diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-06-26 15:38:28 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-06-26 15:38:28 -0300 |
commit | a77d263e86feea55529800028f960d7124c1385f (patch) | |
tree | 88bc21289c5ef341a7f3509c067524fea7003049 /luaconf.h | |
parent | 7cc40851e1d1a18a4c45fca31dbccd4206050b11 (diff) | |
download | lua-a77d263e86feea55529800028f960d7124c1385f.tar.gz lua-a77d263e86feea55529800028f960d7124c1385f.tar.bz2 lua-a77d263e86feea55529800028f960d7124c1385f.zip |
unsigned-manipulation functions (lua_puhsunsigned, lua_tounsigned, etc.)
deprecated
Diffstat (limited to 'luaconf.h')
-rw-r--r-- | luaconf.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: luaconf.h,v 1.207 2014/06/10 19:21:20 roberto Exp roberto $ | 2 | ** $Id: luaconf.h,v 1.208 2014/06/24 17:02:00 roberto Exp roberto $ |
3 | ** Configuration file for Lua | 3 | ** Configuration file for Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -280,6 +280,12 @@ | |||
280 | */ | 280 | */ |
281 | #define LUA_COMPAT_BITLIB | 281 | #define LUA_COMPAT_BITLIB |
282 | 282 | ||
283 | /* | ||
284 | @@ LUA_COMPAT_APIUNSIGNED controls the presence of macros for | ||
285 | ** manipulating unsigned integers (lua_pushunsigned, lua_tounsigned, etc.) | ||
286 | */ | ||
287 | #define LUA_COMPAT_APIUNSIGNED | ||
288 | |||
283 | 289 | ||
284 | /* | 290 | /* |
285 | @@ LUA_COMPAT_FLOATSTRING makes Lua format integral floats without a | 291 | @@ LUA_COMPAT_FLOATSTRING makes Lua format integral floats without a |