lua-users home
lua-l archive

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


>How can I modify a referenced data?

No: Lua values are never modifiable, be they referenced or not. But you
don't seem to need this: you need to modify the entries in the table not
the Lua value itself (ie, changing it to another table or to a string).
And this is ok: once you get the table, you can change anything in it.
--lhf