From 6e33873327428efa8c2e1f111b0e6abd13457ba5 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Thu, 1 Jun 2000 07:02:41 +0000 Subject: [PATCH] (thai-composition-function): Fix args to compose-string. --- lisp/language/thai-util.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/language/thai-util.el b/lisp/language/thai-util.el index 6c6744424ff..0ed2a6ff9e4 100644 --- a/lisp/language/thai-util.el +++ b/lisp/language/thai-util.el @@ -197,7 +197,7 @@ The return value is number of composed characters." (if (< (1+ from) to) (prog1 (- to from) (if string - (compose-string from to) + (compose-string string from to) (compose-region from to)) (- to from)))) -- 2.39.5