aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2007-12-06 07:34:14 +0000
committerKenichi Handa2007-12-06 07:34:14 +0000
commit16a4c7e925d1a445e4a48e91add30abd6fddc1c0 (patch)
tree084474bebf16cd4cabb9024c57cf35d7dc0366ca
parent33e2c0dadbb1ee191936d5bf6b521f4e0d63d2ec (diff)
downloademacs-16a4c7e925d1a445e4a48e91add30abd6fddc1c0.tar.gz
emacs-16a4c7e925d1a445e4a48e91add30abd6fddc1c0.zip
Fix the range for recording
tibetan-composition-function in composition-function-table.
-rw-r--r--lisp/language/tibetan.el10
1 files changed, 2 insertions, 8 deletions
diff --git a/lisp/language/tibetan.el b/lisp/language/tibetan.el
index b990e130a07..0b966f3d126 100644
--- a/lisp/language/tibetan.el
+++ b/lisp/language/tibetan.el
@@ -604,15 +604,9 @@ This also matches some punctuation characters which need conversion.")
604(defvar tibetan-decomposed nil) 604(defvar tibetan-decomposed nil)
605(defvar tibetan-decomposed-temp nil) 605(defvar tibetan-decomposed-temp nil)
606 606
607
608;; For automatic composition. 607;; For automatic composition.
609(dolist (range '((?$(7#!(B . ?$(7#J(B) "$(7#K#L#M"Q"R(B" (?$(7"S(B . ?$(7"^(B) "$(7"a"b"e"_"c"d(B" (?$(7"g(B . ?$(7"l(B) "$(7!I!e!g(B")) 608(set-char-table-range composition-function-table '(#xF00 . #xFD1)
610 (if (stringp range) 609 'tibetan-composition-function)
611 (dotimes (i (length range))
612 (aset composition-function-table (aref range i)
613 'tibetan-composition-function))
614 (set-char-table-range composition-function-table range
615 'tibetan-composition-function)))
616 610
617(provide 'tibetan) 611(provide 'tibetan)
618 612