From: Kenichi Handa Date: Thu, 1 Jun 2000 07:02:41 +0000 (+0000) Subject: (thai-composition-function): Fix args to compose-string. X-Git-Tag: emacs-pretest-21.0.90~3574 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6e33873327428efa8c2e1f111b0e6abd13457ba5;p=emacs.git (thai-composition-function): Fix args to compose-string. --- 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))))