And also, after line 223:
tx.osbwrite(printfile,printptr);
you need to add
printptr += tx.length();
to get the data written to the output file.
On Nov 19, 5:09 pm, Steve Bush <
neosys....@gmail.com> wrote:
> indeed it should! I always burn my fingers on that darn x?a:b syntax and
> then go and use it again after some years thinking it is cool.
>
> if (html)
> printfilename^=".HTM";
> else
> printfilename^=".txt";
>
> I fixed it in subversion already and will be in the next binary releases
> too.
>
> On Fri, Nov 19, 2010 at 8:56 PM, RichardS <
richardswingw...@gmail.com>wrote:
>
>
>
>
>
>
>
> > Line 78 of printtext.h:
>
> > printfilename = printfilename ^ html ? ".HTM" : ".txt";
>
> > should be:
>
> > printfilename = printfilename ^ (html ? ".HTM" : ".txt");
>
> > As it stands, 'list' always creates a file named ".HTM"
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Exodus Users" group.
> > To post to this group, send email to
exodus...@googlegroups.com.
> > To unsubscribe from this group, send email to
> >
exodus-users...@googlegroups.com<exodus-users%2Bunsubscribe@google
groups.com>
> > .