1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-28 16:21:07 -08:00

(unidata-get-name): Handle U+110B.

This commit is contained in:
Kenichi Handa 2005-03-02 11:04:10 +00:00
parent f302f340dc
commit 752fc44b12

View file

@ -701,7 +701,8 @@ Property value is a character."
;; TIndex = SIndex % TCount
(T (% char 28)))
(format "HANGUL SYLLABLE %s%s%s"
(aref (aref jamo-name-table 0) L)
;; U+110B is nil in this table.
(or (aref (aref jamo-name-table 0) L) "")
(aref (aref jamo-name-table 1) V)
(if (= T 0) ""
(aref (aref jamo-name-table 2) (1- T)))))))