|
> Is anyone experiencing the same? How that can be fixed?
I often get out of order replies - where the original arrives later. I've not noticed any go missing, though.
P. -------------------------------------------------- From: "Shmuel Zeigerman" <shmuz@actcom.co.il> Sent: Sunday, October 07, 2007 8:11 AM To: "Lua list" <lua@bazar2.conectiva.com.br> Subject: Lost mail (was: a question about tables)
This has occurred already a few times: I receive a message from this list but don't receive the one that message replies to. In particular, I didn't receive a message from "dustpylex2". I spoke to my Internet provider and they said they don't do any spam/virus filtering on my email account.Is anyone experiencing the same? How that can be fixed? Merick wrote:dustpylex2 wrote:lol man, this is an old old post, I've already got tables figured out since thenMerick wrote:I'm trying to get a handle on tables. Can some tell me, with thesedeclarations am I creating one single table "tiles" with "pic" and "file"as subsets of that table, or am I just creating three different tables? tiles = {} tiles.pic = {} tiles.file = {}What your doing is essentially the equivalent of this: tiles = {pic={},file={}} So ya, they are subsets of tiles.-- Shmuel