diff options
author | Kenichi Handa <handa@m17n.org> | 2008-09-05 01:01:02 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2008-09-05 01:01:02 +0000 |
commit | d51659522f0da903bbd1eb1dd76fd441c93ca4da (patch) | |
tree | 7752196c9222032565d605bcf7aebe6faaee1290 /lisp/language | |
parent | 8b1c87bf324961e9690ea10871a8411f2bc26524 (diff) | |
download | emacs-d51659522f0da903bbd1eb1dd76fd441c93ca4da.tar.gz |
Fix setting of composition-function-table.
Diffstat (limited to 'lisp/language')
-rw-r--r-- | lisp/language/tibetan.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/language/tibetan.el b/lisp/language/tibetan.el index b22bfd6711e..cf4f98296d5 100644 --- a/lisp/language/tibetan.el +++ b/lisp/language/tibetan.el @@ -604,8 +604,9 @@ This also matches some punctuation characters which need conversion.") (defvar tibetan-decomposed-temp nil) ;; For automatic composition. -(set-char-table-range composition-function-table '(#xF00 . #xFD1) - '(("[\xF00-\xFD1]+" . tibetan-composition-function))) +(set-char-table-range + composition-function-table '(#xF00 . #xFD1) + (list (vector tibetan-composable-pattern 0 'font-shape-gstring))) (provide 'tibetan) |