lua-users home
lua-l archive

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


> This question was probably answered before but I ran into a problem
> trying to push many lua values from a c function.

The manual says:

  When you interact with Lua API, you are responsible for ensuring
  consistency. In particular, you are responsible for controlling stack
  overflow. You can use the function lua_checkstack to grow the stack size.

  http://www.lua.org/manual/5.1/manual.html#3.2