diff options
| author | Pavel Janík | 2002-01-19 19:15:11 +0000 |
|---|---|---|
| committer | Pavel Janík | 2002-01-19 19:15:11 +0000 |
| commit | 80dadb9eada9403fb2eaa404048f3c7f7c6688db (patch) | |
| tree | 757f1419f717759113755621e85bdbef16017a51 | |
| parent | b03e7e2f06526dbe798903aee44b6465e7a06d26 (diff) | |
| download | emacs-80dadb9eada9403fb2eaa404048f3c7f7c6688db.tar.gz emacs-80dadb9eada9403fb2eaa404048f3c7f7c6688db.zip | |
(tibetan-decompose-region)
(tibetan-decompose-string): Fix typo in docstring.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/language/tibet-util.el | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2427054335a..786b87843d9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2002-01-19 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 1 | 2002-01-19 Pavel Jan,Bm(Bk <Pavel@Janik.cz> |
| 2 | 2 | ||
| 3 | * language/tibet-util.el (tibetan-decompose-region) | ||
| 4 | (tibetan-decompose-string): Fix typo in docstring. | ||
| 5 | |||
| 3 | * ruler-mode.el (ruler-mode): New keyword. Fix :version. | 6 | * ruler-mode.el (ruler-mode): New keyword. Fix :version. |
| 4 | 7 | ||
| 5 | 2002-01-18 Richard M. Stallman <rms@gnu.org> | 8 | 2002-01-18 Richard M. Stallman <rms@gnu.org> |
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." | |||
| 261 | (defun tibetan-decompose-region (from to) | 261 | (defun tibetan-decompose-region (from to) |
| 262 | "Decompose Tibetan text in the region FROM and TO. | 262 | "Decompose Tibetan text in the region FROM and TO. |
| 263 | This is different from decompose-region because precomposed Tibetan characters | 263 | This is different from decompose-region because precomposed Tibetan characters |
| 264 | are decomposed into normal Tiebtan character sequences." | 264 | are decomposed into normal Tibetan character sequences." |
| 265 | (interactive "r") | 265 | (interactive "r") |
| 266 | (save-restriction | 266 | (save-restriction |
| 267 | (narrow-to-region from to) | 267 | (narrow-to-region from to) |
| @@ -281,7 +281,7 @@ are decomposed into normal Tiebtan character sequences." | |||
| 281 | (defun tibetan-decompose-string (str) | 281 | (defun tibetan-decompose-string (str) |
| 282 | "Decompose Tibetan string STR. | 282 | "Decompose Tibetan string STR. |
| 283 | This is different from decompose-string because precomposed Tibetan characters | 283 | This is different from decompose-string because precomposed Tibetan characters |
| 284 | are decomposed into normal Tiebtan character sequences." | 284 | are decomposed into normal Tibetan character sequences." |
| 285 | (let ((new "") | 285 | (let ((new "") |
| 286 | (len (length str)) | 286 | (len (length str)) |
| 287 | (idx 0) | 287 | (idx 0) |