diff options
Diffstat (limited to 'luaconf.h')
-rw-r--r-- | luaconf.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: luaconf.h,v 1.265 2018/02/27 18:47:32 roberto Exp roberto $ | 2 | ** $Id: luaconf.h,v 1.266 2018/03/02 18:31:51 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 | */ |
@@ -446,6 +446,7 @@ | |||
446 | @@ LUA_INTEGER_FMT is the format for writing integers. | 446 | @@ LUA_INTEGER_FMT is the format for writing integers. |
447 | @@ LUA_MAXINTEGER is the maximum value for a LUA_INTEGER. | 447 | @@ LUA_MAXINTEGER is the maximum value for a LUA_INTEGER. |
448 | @@ LUA_MININTEGER is the minimum value for a LUA_INTEGER. | 448 | @@ LUA_MININTEGER is the minimum value for a LUA_INTEGER. |
449 | @@ LUA_MAXUNSIGNED is the maximum value for a LUA_UNSIGNED. | ||
449 | @@ lua_integer2str converts an integer to a string. | 450 | @@ lua_integer2str converts an integer to a string. |
450 | */ | 451 | */ |
451 | 452 | ||
@@ -465,6 +466,8 @@ | |||
465 | */ | 466 | */ |
466 | #define LUA_UNSIGNED unsigned LUAI_UACINT | 467 | #define LUA_UNSIGNED unsigned LUAI_UACINT |
467 | 468 | ||
469 | #define LUA_MAXUNSIGNED (~(lua_Unsigned)0) | ||
470 | |||
468 | 471 | ||
469 | /* now the variable definitions */ | 472 | /* now the variable definitions */ |
470 | 473 | ||