summaryrefslogtreecommitdiff
path: root/lisp/language
diff options
context:
space:
mode:
authorJohn Paul Wallington <jpw@pobox.com>2003-01-09 14:13:48 +0000
committerJohn Paul Wallington <jpw@pobox.com>2003-01-09 14:13:48 +0000
commitc256b4abe53c517674c9b2e6558db91e17689f64 (patch)
treeaf8d546809a254c2d0184b059664d3c4cae2de12 /lisp/language
parent8e5c466d30dfb2d945da24a91a4c09216a1f5aed (diff)
downloademacs-c256b4abe53c517674c9b2e6558db91e17689f64.tar.gz
* language/ethio-util.el (ethio-gemination)
(exit-ethiopic-environment): Doc fixes. * language/viet-util.el (viet-encode-viqr-region) (viet-decode-viqr-region, viet-encode-viqr-buffer) (viet-decode-viqr-buffer): Doc fixes.
Diffstat (limited to 'lisp/language')
-rw-r--r--lisp/language/ethio-util.el4
-rw-r--r--lisp/language/viet-util.el8
2 files changed, 6 insertions, 6 deletions
diff --git a/lisp/language/ethio-util.el b/lisp/language/ethio-util.el
index 29b06729fbc..f61e1798526 100644
--- a/lisp/language/ethio-util.el
+++ b/lisp/language/ethio-util.el
@@ -83,7 +83,7 @@
(add-hook 'after-save-hook 'ethio-find-file))
(defun exit-ethiopic-environment ()
- "Exit Ethiopic language environment"
+ "Exit Ethiopic language environment."
(while exit-ethiopic-environment-data
(global-set-key (car (car exit-ethiopic-environment-data))
(cdr (car exit-ethiopic-environment-data)))
@@ -1984,7 +1984,7 @@ With ARG, insert that many delimiters."
(defun ethio-gemination nil
"Compose the character before the point with the Ethiopic gemination mark.
-If the characater is already composed, decompose it and remove the gemination
+If the character is already composed, decompose it and remove the gemination
mark."
(interactive "*")
(cond
diff --git a/lisp/language/viet-util.el b/lisp/language/viet-util.el
index 108e3a53708..1b72ff07d8b 100644
--- a/lisp/language/viet-util.el
+++ b/lisp/language/viet-util.el
@@ -222,7 +222,7 @@
;;;###autoload
(defun viet-decode-viqr-region (from to)
- "Convert `VIQR' mnemonics of the current region to Vietnamese characaters.
+ "Convert `VIQR' mnemonics of the current region to Vietnamese characters.
When called from a program, expects two arguments,
positions (integers or markers) specifying the stretch of the region."
(interactive "r")
@@ -239,13 +239,13 @@ positions (integers or markers) specifying the stretch of the region."
;;;###autoload
(defun viet-decode-viqr-buffer ()
- "Convert `VIQR' mnemonics of the current buffer to Vietnamese characaters."
+ "Convert `VIQR' mnemonics of the current buffer to Vietnamese characters."
(interactive)
(viet-decode-viqr-region (point-min) (point-max)))
;;;###autoload
(defun viet-encode-viqr-region (from to)
- "Convert Vietnamese characaters of the current region to `VIQR' mnemonics.
+ "Convert Vietnamese characters of the current region to `VIQR' mnemonics.
When called from a program, expects two arguments,
positions (integers or markers) specifying the stretch of the region."
(interactive "r")
@@ -262,7 +262,7 @@ positions (integers or markers) specifying the stretch of the region."
;;;###autoload
(defun viet-encode-viqr-buffer ()
- "Convert Vietnamese characaters of the current buffer to `VIQR' mnemonics."
+ "Convert Vietnamese characters of the current buffer to `VIQR' mnemonics."
(interactive)
(viet-encode-viqr-region (point-min) (point-max)))