lua-users home
lua-l archive

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


> I got the gibberish symptom on both Evince and Acroread, so if it's a
> reader issue, it's a common reader issue.

My copy seems to work OK, both with evince and acroread (Ubuntu). It
only loses the identation:

a = "one string"
b = string.gsub(a, "one", "another") -- change string parts
print(a) --> one string
print(b) --> another string

-- Roberto