Comment 4 for bug 71386

Revision history for this message
Luzius Thöny (lucius-antonius) wrote :

this is getting too complicated, let's try a simpler example.

start with this text:
-----
aaa
aab
ʌʌʌ
aba
ɒbb
ɒcc
ʌbb
-----

and run it through 'sort'. the result (on my machine) is:
-----
ʌʌʌ
aaa
aab
aba
ɒbb
ʌbb
ɒcc
-----

that's nor properly sorted at all! what i want is this:

-----
aaa
aab
aba
ɒbb
ɒcc
ʌbb
ʌʌʌ
-----

(i may be wrong wrt the order of 'ʌ' and 'ɒ', but since the former is hex 'CA 8C' and the latter is 'C9 92', i'm guessing it should be this way.)