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));
            


_______________________________________________
Aspell-devel mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/aspell-devel

Reply via email to