[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: PIL 3rd electronic version
- From: Roberto Ierusalimschy <roberto@...>
- Date: Wed, 15 May 2013 20:43:57 -0300
> 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