]> git.eshelyaron.com Git - emacs.git/commitdiff
(lao-composition-function): Adjusted for the new calling way.
authorKenichi Handa <handa@m17n.org>
Mon, 25 Feb 2008 01:35:50 +0000 (01:35 +0000)
committerKenichi Handa <handa@m17n.org>
Mon, 25 Feb 2008 01:35:50 +0000 (01:35 +0000)
lisp/language/lao-util.el

index 5fc12d8455c1fd49e25e500503d45269eb2717ec..82e413bae045afe98521572e99c36a4b3906a302 100644 (file)
@@ -493,20 +493,19 @@ syllable.  In that case, FROM and TO are indexes to STR."
       lao-str)))
 
 ;;;###autoload
-(defun lao-composition-function (pos &optional string)
-  (setq pos (1- pos))
-  (with-category-table lao-category-table
-    (if string
-       (if (and (>= pos 0)
-                (eq (string-match lao-composition-pattern string pos) pos))
-           (prog1 (match-end 0)
-             (compose-string string pos (match-end 0))))
-      (if (>= pos (point-min))
+(defun lao-composition-function (from to font-object string)
+  (or (and font-object
+          (font-shape-text from to font-object string))
+      (with-category-table lao-category-table
+       (if string
+           (if (eq (string-match lao-composition-pattern string from) to)
+               (prog1 (match-end 0)
+                 (compose-string string from (match-end 0))))
          (save-excursion
-           (goto-char pos)
+           (goto-char from)
            (if (looking-at lao-composition-pattern)
                (prog1 (match-end 0)
-                 (compose-region pos (match-end 0)))))))))
+                 (compose-region from (match-end 0)))))))))
 
 ;;;###autoload
 (defun lao-compose-region (from to)