diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-09-14 08:43:18 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-09-16 19:37:07 +0200 |
commit | 63f419f1339cbd0a7d1e64586854a4f01b3f80d1 (patch) | |
tree | 80bce487ec8c4f7d8258d13a49b21cb4eb3f289b /lisp/language/tibet-util.el | |
parent | 36474a1e490a5eae266805a0e04615741d56692c (diff) | |
download | emacs-63f419f1339cbd0a7d1e64586854a4f01b3f80d1.tar.gz emacs-63f419f1339cbd0a7d1e64586854a4f01b3f80d1.tar.bz2 emacs-63f419f1339cbd0a7d1e64586854a4f01b3f80d1.zip |
; Minor stylistic fixes found by checkdoc
Diffstat (limited to 'lisp/language/tibet-util.el')
-rw-r--r-- | lisp/language/tibet-util.el | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/lisp/language/tibet-util.el b/lisp/language/tibet-util.el index ddf4a0c0fb1..1f7a1edcad3 100644 --- a/lisp/language/tibet-util.el +++ b/lisp/language/tibet-util.el @@ -281,8 +281,9 @@ The returned string has no composition information." ;;;###autoload (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 Tibetan character sequences." +This is different from `decompose-region' because precomposed +Tibetan characters are decomposed into normal Tibetan character +sequences." (interactive "r") (save-restriction (narrow-to-region from to) @@ -301,8 +302,9 @@ are decomposed into normal Tibetan character sequences." ;;;###autoload (defun tibetan-decompose-string (str) "Decompose Tibetan string STR. -This is different from decompose-string because precomposed Tibetan characters -are decomposed into normal Tibetan character sequences." +This is different from `decompose-string' because precomposed +Tibetan characters are decomposed into normal Tibetan character +sequences." (let ((new "") (len (length str)) (idx 0) @@ -332,7 +334,7 @@ See also the documentation of the function `tibetan-decompose-region'." ;;;###autoload (defun tibetan-compose-buffer () "Composes Tibetan character components in the buffer. -See also docstring of the function tibetan-compose-region." +See also docstring of the function `tibetan-compose-region'." (interactive) (make-local-variable 'tibetan-decomposed) (tibetan-compose-region (point-min) (point-max)) |