lua-users home
lua-l archive

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


> I think it doesn't handle a sparse array in the best way:
> tab = { [1] = 1, [3] = 3 }
> is unserialized as
> {1,3}  (that is { [1] = 1, [2] = 3 })

I've fixed that and also added the much better 
escapestring function of Roberto.

I'll place a new version in the files area of the mailing list.

CM