On Fri, 2007-04-20 at 15:58 +0800, Irene (Shi Ying) Huang wrote:
> > > + if (fgets (line, sizeof (line), aspell)) {
> > > + while (fgets (line, sizeof (line), aspell))
> > > + fputs (line, perspell);
> >
> > Are you intentionally throwing away the first line from the aspell
> > file? If not, why not just dump the if line altogether? If so,
> > it would be good to include a comment as to why, so future programmers
> > looking at it don't wonder why.
> yes I intentionally throw the first line away, because of different
> dictionary format between aspell and hunspell. :)
So can you add a /* comment */ like Alan suggested?
Laca