lua-users home
lua-l archive

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


> Just a reminder - do not attempt to modify the string you get from
> Lua. If you need to change it, you should copy it into your own
> buffer.

Right but lua_tostring returns const char* so any attempt to modify the
string should be caught by the compiler.