aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2000-06-01 07:03:07 +0000
committerKenichi Handa2000-06-01 07:03:07 +0000
commit1513ad08f16ee89e4e760990151feb29b880f380 (patch)
tree82827334d37dcf55d0b143892c3efc53c533e6cb
parent6e33873327428efa8c2e1f111b0e6abd13457ba5 (diff)
downloademacs-1513ad08f16ee89e4e760990151feb29b880f380.tar.gz
emacs-1513ad08f16ee89e4e760990151feb29b880f380.zip
(lao-composition-function): Fix args to compose-string.
-rw-r--r--lisp/language/lao-util.el2
1 files changed, 1 insertions, 1 deletions
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."
495 (if (< (1+ from) to) 495 (if (< (1+ from) to)
496 (prog1 (- to from) 496 (prog1 (- to from)
497 (if string 497 (if string
498 (compose-string from to) 498 (compose-string string from to)
499 (compose-region from to)) 499 (compose-region from to))
500 (- to from)))) 500 (- to from))))
501 501