Special characters not showed correctly in spell checker
Bug #174000 reported by
sander
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Coccinella |
Confirmed
|
High
|
Mats |
Bug Description
Special characters are not showed correctly in spell checker. In the attached screenshot, the first item should be "Cocaïne" and the one under "Cocon" should be "Cécile".
Changed in coccinella: | |
status: | New → Confirmed |
To post a comment you must log in.
There are a lot of problems with the spell checker. I have some C code which I will use instead later on. In this case I must know if you are using aspell or ispell. Try:
parray spell::static
Because ispell doesn't support utf-8 and it is a mess to translate encodings back and forth:
if {$static(speller) eq "ispell"} {
#fconfigure $pipe -encoding latin1
} elseif {$static(speller) eq "aspell"} {
# Both we and aspell use utf-8, thus, no translation!
fconfigure $pipe -translation binary
}