On Tue, Jan 07, 2003 at 10:37:19AM +0100, Lars Gullik Bj�nnes wrote:
> all calls to getline is followed by a call to rtrim...
Indeed.
I now just wonder why the removal of the '\r' is necessary at all.
It shouldn't for the common case of putting the line into istringstream and
reading from there.
The problem in LaTeX.C is only
if (token.empty())
continue;
Which could be replaced by
if (token.size() < 5)
continue;
or similar anyway as error message are longer than that.
Andre'
--
Those who desire to give up Freedom in order to gain Security,
will not have, nor do they deserve, either one. (T. Jefferson)