From 9baf74e53c9f2f56253cf432d8f5271575218598 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Thu, 7 Nov 2002 06:31:13 +0000 Subject: [PATCH] Register lao-composition-function in composition-function-table for Lao vowels and tones. (lao): Don't use lao-post-read-conversion. --- lisp/language/lao.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lisp/language/lao.el b/lisp/language/lao.el index 200d843eb43..d1a43b805c4 100644 --- a/lisp/language/lao.el +++ b/lisp/language/lao.el @@ -42,11 +42,11 @@ (features lao-util) (documentation . t))) -;; Register a function to compose Lao characters. -(set-char-table-range composition-function-table - '(#x0F00 . #x0F7F) - '(("\\c0\\c9?\\(\\(\\c2\\|\\c3\\)\\c4?\\|\\c4\\)?" - . lao-composition-function))) +;; For automatic composition. +(let ((chars "(1QTUVWXY[\hijklm(B")) + (dotimes (i (length chars)) + (aset composition-function-table (aref chars i) + 'lao-composition-function))) (provide 'lao) -- 2.39.2