auto_saved bug fix

This commit is contained in:
p.kosyh 2010-07-15 18:31:23 +00:00
parent 532af9903f
commit 5fb2e29b2e

View file

@ -1552,6 +1552,7 @@ function clearvar (v)
for k,o in pairs(v) do
if type(o) == 'table' and o.__visited__ ~= nil then
o.__visited__ = nil
o.auto_saved = nil
clearvar(o)
end
end