aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/language/tibet-util.el8
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/language/tibet-util.el b/lisp/language/tibet-util.el
index 5a9a1924de5..37a0f49493c 100644
--- a/lisp/language/tibet-util.el
+++ b/lisp/language/tibet-util.el
@@ -444,9 +444,13 @@ See also docstring of the function tibetan-compose-region."
444 (work-buf (get-buffer-create " *tibetan-work*"))) 444 (work-buf (get-buffer-create " *tibetan-work*")))
445 (set-buffer work-buf) 445 (set-buffer work-buf)
446 (erase-buffer) 446 (erase-buffer)
447 (insert-buffer-substring old-buf from to) 447 (if (stringp from)
448 (insert from)
449 (insert-buffer-substring old-buf from to))
448 (if (not tibetan-decomposed-temp) 450 (if (not tibetan-decomposed-temp)
449 (tibetan-decompose-region (point-min) (point-max))))) 451 (tibetan-decompose-region (point-min) (point-max)))
452 ;; Should return nil as annotations.
453 nil))
450 454
451(provide 'language/tibet-util) 455(provide 'language/tibet-util)
452 456