aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2000-06-01 07:02:41 +0000
committerKenichi Handa2000-06-01 07:02:41 +0000
commit6e33873327428efa8c2e1f111b0e6abd13457ba5 (patch)
tree8e5aa6ad8aa5c3dcccce2a95b1a1d7ba1433ebe6
parenteadef5e6e34aad2b039db8d15fe9ee11b9a17010 (diff)
downloademacs-6e33873327428efa8c2e1f111b0e6abd13457ba5.tar.gz
emacs-6e33873327428efa8c2e1f111b0e6abd13457ba5.zip
(thai-composition-function): Fix args to compose-string.
-rw-r--r--lisp/language/thai-util.el2
1 files changed, 1 insertions, 1 deletions
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."
197 (if (< (1+ from) to) 197 (if (< (1+ from) to)
198 (prog1 (- to from) 198 (prog1 (- to from)
199 (if string 199 (if string
200 (compose-string from to) 200 (compose-string string from to)
201 (compose-region from to)) 201 (compose-region from to))
202 (- to from)))) 202 (- to from))))
203 203