]> git.eshelyaron.com Git - emacs.git/commitdiff
(tibetan-decompose-region)
authorPavel Janík <Pavel@Janik.cz>
Sat, 19 Jan 2002 19:15:11 +0000 (19:15 +0000)
committerPavel Janík <Pavel@Janik.cz>
Sat, 19 Jan 2002 19:15:11 +0000 (19:15 +0000)
(tibetan-decompose-string): Fix typo in docstring.

lisp/ChangeLog
lisp/language/tibet-util.el

index 2427054335a67999978849a907ffae1b56757c9d..786b87843d9c3c6599d29a7a5cc275fa2173380c 100644 (file)
@@ -1,5 +1,8 @@
 2002-01-19  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
 
+       * language/tibet-util.el (tibetan-decompose-region)
+       (tibetan-decompose-string): Fix typo in docstring.
+
        * ruler-mode.el (ruler-mode): New keyword.  Fix :version.
 
 2002-01-18  Richard M. Stallman  <rms@gnu.org>
index 54938ffe635eb5ab8b0de0b56220a73b0cb3fec3..ced6dee65318f010a3cfb572874f6a35cb659062 100644 (file)
@@ -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)