lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


OK.

How about these ones?

/*
@@ LUAI_UINT32 is an unsigned integer with at least 32 bits.
@@ LUAI_INT32 is an signed integer with at least 32 bits.
@@ LUAI_UMEM is an unsigned integer big enough to count the total
@* memory used by Lua.
@@ LUAI_MEM is a signed integer big enough to count the total memory
@* used by Lua.
** CHANGE here if for some weird reason the default definitions are not
** good enough for your machine. (The definitions in the 'else'
** part always works, but may waste space on machines with 64-bit
** longs.) Probably you do not need to change this.
*/

should be "the definitions in the 'else' part always work"



/* @@ LUAI_MAXCSTACK limits the number of Lua stack slots that a C function @* can use. ** CHANGE it if you need lots of (Lua) stack space for your C ** functions. This limit is arbitrary; its only purpose is to stop C ** functions to consume unlimited stack space. */

should be "its only purpose is to stop C functions from consuming"





On Tue, Nov 19, 2013 at 2:54 PM, Luiz Henrique de Figueiredo <lhf@tecgraf.puc-rio.br> wrote:
> http://www.lua.org/source/5.1/luaconf.h.html
>
> LUA_USE_POSIX includes all functionallity ...
>
> should be functionality

Thanks for the report. The online source code is for Lua 5.1.0. This has been
fixed in later versions.