for the case the arg FROM is a string.
(work-buf (get-buffer-create " *tibetan-work*")))
(set-buffer work-buf)
(erase-buffer)
- (insert-buffer-substring old-buf from to)
+ (if (stringp from)
+ (insert from)
+ (insert-buffer-substring old-buf from to))
(if (not tibetan-decomposed-temp)
- (tibetan-decompose-region (point-min) (point-max)))))
+ (tibetan-decompose-region (point-min) (point-max)))
+ ;; Should return nil as annotations.
+ nil))
(provide 'language/tibet-util)