# HG changeset patch # User John Paul Wallington # Date 1042121628 0 # Node ID 1a51889893d085005acf72557d46d8e74fb24195 # Parent b24e4fdd8b50576abfcc3f2d636782eb1abe5b4d * 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. diff -r b24e4fdd8b50 -r 1a51889893d0 lisp/ChangeLog --- a/lisp/ChangeLog Thu Jan 09 13:50:17 2003 +0000 +++ b/lisp/ChangeLog Thu Jan 09 14:13:48 2003 +0000 @@ -1,3 +1,12 @@ +2003-01-09 John Paul Wallington + + * 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 * paths.el: Remove gnus-startup-file. diff -r b24e4fdd8b50 -r 1a51889893d0 lisp/language/ethio-util.el --- a/lisp/language/ethio-util.el Thu Jan 09 13:50:17 2003 +0000 +++ b/lisp/language/ethio-util.el Thu Jan 09 14:13:48 2003 +0000 @@ -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 @@ (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 -r b24e4fdd8b50 -r 1a51889893d0 lisp/language/viet-util.el --- a/lisp/language/viet-util.el Thu Jan 09 13:50:17 2003 +0000 +++ b/lisp/language/viet-util.el Thu Jan 09 14:13:48 2003 +0000 @@ -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 @@ ;;;###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 @@ ;;;###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)))