[Konsole-devel] [Bug 96536] Unicode decomposed text gets garbled in Konsole (NFD mode)

Jon Nelson jnelson-kde at jamponi.net
Thu Jun 17 21:26:10 UTC 2010


https://bugs.kde.org/show_bug.cgi?id=96536


Jon Nelson <jnelson-kde at jamponi.net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jnelson-kde at jamponi.net




--- Comment #7 from Jon Nelson <jnelson-kde jamponi net>  2010-06-17 23:26:08 ---
Please fix!  gnome-terminal and xterm both display NFD unicode properly.
Due to konsole's inability to display NFD characters I chased a particular bug
around in other software for HOURS.

Here is an easy way to test (needs python):

#! /usr/bin/python
import unicodedata

u = u'Ha\u0308mikon'
u1 = unicodedata.normalize('NFC', u)
u2 = unicodedata.normalize('NFD', u)
u3 = unicodedata.normalize('NFKD', u)
u4 = unicodedata.normalize('NFKC', u)
print u1, u2, u3, u4




The above should print what appears to be the *same* word 4 times.
konsole is the only console tested that does not work.


I'm running KDE 4.4.3.

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the konsole-devel mailing list