aspell-devel
[Top][All Lists]
Advanced

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

[aspell-devel] Bug + solution


From: Antoine Martin
Subject: [aspell-devel] Bug + solution
Date: Mon, 9 Sep 2002 14:47:04 +0200
User-agent: Mutt/1.4i

When in the -a mode, ^ did'nt spell check the line correctly, the last
character was truncated :
'^test' spells 'tes'

patch :
aspell.cc, line 592, replace
     checker->process(line + ignore, strlen(line));
by
    line += ignore;
    checker->process(line, strlen(line));
            




reply via email to

[Prev in Thread] Current Thread [Next in Thread]