From 1513ad08f16ee89e4e760990151feb29b880f380 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Thu, 1 Jun 2000 07:03:07 +0000 Subject: [PATCH] (lao-composition-function): Fix args to compose-string. --- lisp/language/lao-util.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/language/lao-util.el b/lisp/language/lao-util.el index 55f7940ef20..4f5cb960074 100644 --- a/lisp/language/lao-util.el +++ b/lisp/language/lao-util.el @@ -495,7 +495,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