[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Modifying referenced data
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Fri, 31 Jan 2003 11:21:56 -0200
>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