summaryrefslogtreecommitdiff
path: root/lisp/language
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/language')
-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.")
(defvar tibetan-decomposed nil)
(defvar tibetan-decomposed-temp nil)
-
;; For automatic composition.
-(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"))
- (if (stringp range)
- (dotimes (i (length range))
- (aset composition-function-table (aref range i)
- 'tibetan-composition-function))
- (set-char-table-range composition-function-table range
- 'tibetan-composition-function)))
+(set-char-table-range composition-function-table '(#xF00 . #xFD1)
+ 'tibetan-composition-function)
(provide 'tibetan)