summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>2005-03-02 11:04:10 +0000
committerKenichi Handa <handa@m17n.org>2005-03-02 11:04:10 +0000
commit752fc44b128f61dbbf0bf778c4efffb26fa543a2 (patch)
tree84c5ac5acd8853dfa5713b1db6f12ece47f71ad2
parentf302f340dc30289bcee2c4e0f8b3637f071ebc61 (diff)
downloademacs-752fc44b128f61dbbf0bf778c4efffb26fa543a2.tar.gz
emacs-752fc44b128f61dbbf0bf778c4efffb26fa543a2.tar.bz2
emacs-752fc44b128f61dbbf0bf778c4efffb26fa543a2.zip
(unidata-get-name): Handle U+110B.
-rw-r--r--admin/unidata/unidata-gen.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/admin/unidata/unidata-gen.el b/admin/unidata/unidata-gen.el
index fbf08a9e74e..63634c18530 100644
--- a/admin/unidata/unidata-gen.el
+++ b/admin/unidata/unidata-gen.el
@@ -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)))))))