]> code.delx.au - gnu-emacs/commitdiff
* language/ethio-util.el (ethio-gemination)
authorJohn Paul Wallington <jpw@pobox.com>
Thu, 9 Jan 2003 14:13:48 +0000 (14:13 +0000)
committerJohn Paul Wallington <jpw@pobox.com>
Thu, 9 Jan 2003 14:13:48 +0000 (14:13 +0000)
(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.

lisp/ChangeLog
lisp/language/ethio-util.el
lisp/language/viet-util.el

index b460ed5fc50667d6278cc9fc2d04c90b1a67a3c9..cd9f05c2579ed8e5f9c8930d723c063182a46887 100644 (file)
@@ -1,3 +1,12 @@
+2003-01-09  John Paul Wallington  <jpw@shootybangbang.com>
+
+       * 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.
+
 2003-01-09  ShengHuo ZHU  <zsh@cs.rochester.edu>
 
        * paths.el: Remove gnus-startup-file.
index 29b06729fbc68b89f56cb96ef979d0b03c71c5f4..f61e17985269a0d8ca7936e8a3e6ab8e5a4db1a1 100644 (file)
@@ -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
index 108e3a53708746175f1d546c0e65ecd7f235d0ba..1b72ff07d8bd46aaf2f2b9a8464d91cc2cfbb963 100644 (file)
 
 ;;;###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)))