aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa1997-05-12 07:00:26 +0000
committerKenichi Handa1997-05-12 07:00:26 +0000
commit5d0ae7290b3a2cf264d5044152cc7e9ded428670 (patch)
tree3e3c299624bc1c6b08e75aaaba6510163ac5a9ac
parent1d1180f718320b9305b32904514748b6666ef475 (diff)
downloademacs-5d0ae7290b3a2cf264d5044152cc7e9ded428670.tar.gz
emacs-5d0ae7290b3a2cf264d5044152cc7e9ded428670.zip
(tibetan-pre-write-conversion): Make it work
for the case the arg FROM is a string.
-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