• Hi,

    I am using wp6 together with addict 4.2.

    There is a problem with IgnoreAll or Add functionality, for Cyrillic text.

    If there are several instances of a misspelled cyrillic word within a text, after choosing IgnoreAll from the context menu, only the word where the cursor was loses its red underline, while other instances not.

    I have narrowed down the problem to the function WPTIgnoreWord in WPTAddict.pas.


    Code
    if par.IsWordDelimiter (i + l) and par.IsWordDelimiter (i - 1) and
                             par.Compare (i, AWord, false) then


    pas.Compare is performing comparison but is not checking for ANSI code pages, as mentioned in Help.

    Do you have a suggestion what alternative function can be used here, which would properly recognize the word and subsequently remove the red underline from all instances?

    Thanks!