summaryrefslogtreecommitdiff
path: root/lisp/language/tibet-util.el
diff options
context:
space:
mode:
authorPavel Janík <Pavel@Janik.cz>2002-01-19 19:12:45 +0000
committerPavel Janík <Pavel@Janik.cz>2002-01-19 19:12:45 +0000
commit76cae840158bc6047be3dff012fd58275546936d (patch)
treee868017c509d85c22a491cddcc323855c6490c3d /lisp/language/tibet-util.el
parentfd412592d925983369997de628ce8acbab90d777 (diff)
downloademacs-76cae840158bc6047be3dff012fd58275546936d.tar.gz
(tibetan-decompose-region)
(tibetan-decompose-string): Fix typo in docstring.
Diffstat (limited to 'lisp/language/tibet-util.el')
-rw-r--r--lisp/language/tibet-util.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/language/tibet-util.el b/lisp/language/tibet-util.el
index 54938ffe635..ced6dee6531 100644
--- a/lisp/language/tibet-util.el
+++ b/lisp/language/tibet-util.el
@@ -261,7 +261,7 @@ The returned string has no composition information."
(defun tibetan-decompose-region (from to)
"Decompose Tibetan text in the region FROM and TO.
This is different from decompose-region because precomposed Tibetan characters
-are decomposed into normal Tiebtan character sequences."
+are decomposed into normal Tibetan character sequences."
(interactive "r")
(save-restriction
(narrow-to-region from to)
@@ -281,7 +281,7 @@ are decomposed into normal Tiebtan character sequences."
(defun tibetan-decompose-string (str)
"Decompose Tibetan string STR.
This is different from decompose-string because precomposed Tibetan characters
-are decomposed into normal Tiebtan character sequences."
+are decomposed into normal Tibetan character sequences."
(let ((new "")
(len (length str))
(idx 0)