Nanbu21 / libhangul

Automatically exported from code.google.com/p/libhangul
GNU Lesser General Public License v2.1
0 stars 0 forks source link

Garble characters appears when entering some Korean alphabet in hangul 3-set #5

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?

1. Build libhangul 0.1.0
2. Run tools/hangul -k 39
3. type "2f"

What is the expected output? What do you see instead?

"ᅟᅡᆻ"  appears.
"ㅆ"  and  " ㅏ"  should be displayed

What version of the product are you using? On what operating system?

libhangul 0.1.0
Ubuntu Linux 12.10

Please provide any additional information below.

This bug also applies on ibus-hangul when layout 3 set 390 activated and type 
"2f"

Original issue reported on code.google.com by byvo...@gmail.com on 7 Jun 2013 at 6:47

GoogleCodeExporter commented 8 years ago
'2f' should make 'U+115f U+1161 U+11bb'.
And you can check it by:

$ ./hangul -k 39 -i 2f | iconv -t UTF-16LE | od -tx2

In my case, the result was:
0000000 115f 1161 11bb 000a
0000010
and it's correct.

If you can't see the characters, it may be the problem of hangul jamo rendering 
of your terminal or text editor.

Original comment by choe.hwanjin@gmail.com on 9 Jun 2013 at 7:17