diff options
author | Kenichi Handa <handa@m17n.org> | 2000-08-31 00:51:49 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2000-08-31 00:51:49 +0000 |
commit | 41c939cf0295f1bba770775f916e7cf76c41c66a (patch) | |
tree | eac34ca53f9c5121b13f4b3a0f08106e02e5d3a9 /leim/quail | |
parent | 5724ab7a64c57d8c15b58f6905cb81a8d290ffe6 (diff) | |
download | emacs-41c939cf0295f1bba770775f916e7cf76c41c66a.tar.gz |
(thai-generate-quail-map): If the length of
translation is more than one, compose it.
Diffstat (limited to 'leim/quail')
-rw-r--r-- | leim/quail/thai.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/leim/quail/thai.el b/leim/quail/thai.el index df215dff116..a55e5f54eaf 100644 --- a/leim/quail/thai.el +++ b/leim/quail/thai.el @@ -51,7 +51,7 @@ nil (if (> (length trans) 1) (setq ptype 'voweltone - trans (vector trans)) + trans (vector (compose-string trans))) (setq ptype (get-char-code-property (aref trans 0) 'phonetic-type)) (cond ((memq ptype '(vowel-upper vowel-lower)) (setq ptype 'vowel)) |