aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Paul Wallington2003-01-09 14:13:48 +0000
committerJohn Paul Wallington2003-01-09 14:13:48 +0000
commitc256b4abe53c517674c9b2e6558db91e17689f64 (patch)
treeaf8d546809a254c2d0184b059664d3c4cae2de12
parent8e5c466d30dfb2d945da24a91a4c09216a1f5aed (diff)
downloademacs-c256b4abe53c517674c9b2e6558db91e17689f64.tar.gz
emacs-c256b4abe53c517674c9b2e6558db91e17689f64.zip
* 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.
-rw-r--r--lisp/ChangeLog9
-rw-r--r--lisp/language/ethio-util.el4
-rw-r--r--lisp/language/viet-util.el8
3 files changed, 15 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b460ed5fc50..cd9f05c2579 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,12 @@
12003-01-09 John Paul Wallington <jpw@shootybangbang.com>
2
3 * language/ethio-util.el (ethio-gemination)
4 (exit-ethiopic-environment): Doc fixes.
5
6 * language/viet-util.el (viet-encode-viqr-region)
7 (viet-decode-viqr-region, viet-encode-viqr-buffer)
8 (viet-decode-viqr-buffer): Doc fixes.
9
12003-01-09 ShengHuo ZHU <zsh@cs.rochester.edu> 102003-01-09 ShengHuo ZHU <zsh@cs.rochester.edu>
2 11
3 * paths.el: Remove gnus-startup-file. 12 * paths.el: Remove gnus-startup-file.
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 @@
83 (add-hook 'after-save-hook 'ethio-find-file)) 83 (add-hook 'after-save-hook 'ethio-find-file))
84 84
85(defun exit-ethiopic-environment () 85(defun exit-ethiopic-environment ()
86 "Exit Ethiopic language environment" 86 "Exit Ethiopic language environment."
87 (while exit-ethiopic-environment-data 87 (while exit-ethiopic-environment-data
88 (global-set-key (car (car exit-ethiopic-environment-data)) 88 (global-set-key (car (car exit-ethiopic-environment-data))
89 (cdr (car exit-ethiopic-environment-data))) 89 (cdr (car exit-ethiopic-environment-data)))
@@ -1984,7 +1984,7 @@ With ARG, insert that many delimiters."
1984 1984
1985(defun ethio-gemination nil 1985(defun ethio-gemination nil
1986 "Compose the character before the point with the Ethiopic gemination mark. 1986 "Compose the character before the point with the Ethiopic gemination mark.
1987If the characater is already composed, decompose it and remove the gemination 1987If the character is already composed, decompose it and remove the gemination
1988mark." 1988mark."
1989 (interactive "*") 1989 (interactive "*")
1990 (cond 1990 (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 @@
222 222
223;;;###autoload 223;;;###autoload
224(defun viet-decode-viqr-region (from to) 224(defun viet-decode-viqr-region (from to)
225 "Convert `VIQR' mnemonics of the current region to Vietnamese characaters. 225 "Convert `VIQR' mnemonics of the current region to Vietnamese characters.
226When called from a program, expects two arguments, 226When called from a program, expects two arguments,
227positions (integers or markers) specifying the stretch of the region." 227positions (integers or markers) specifying the stretch of the region."
228 (interactive "r") 228 (interactive "r")
@@ -239,13 +239,13 @@ positions (integers or markers) specifying the stretch of the region."
239 239
240;;;###autoload 240;;;###autoload
241(defun viet-decode-viqr-buffer () 241(defun viet-decode-viqr-buffer ()
242 "Convert `VIQR' mnemonics of the current buffer to Vietnamese characaters." 242 "Convert `VIQR' mnemonics of the current buffer to Vietnamese characters."
243 (interactive) 243 (interactive)
244 (viet-decode-viqr-region (point-min) (point-max))) 244 (viet-decode-viqr-region (point-min) (point-max)))
245 245
246;;;###autoload 246;;;###autoload
247(defun viet-encode-viqr-region (from to) 247(defun viet-encode-viqr-region (from to)
248 "Convert Vietnamese characaters of the current region to `VIQR' mnemonics. 248 "Convert Vietnamese characters of the current region to `VIQR' mnemonics.
249When called from a program, expects two arguments, 249When called from a program, expects two arguments,
250positions (integers or markers) specifying the stretch of the region." 250positions (integers or markers) specifying the stretch of the region."
251 (interactive "r") 251 (interactive "r")
@@ -262,7 +262,7 @@ positions (integers or markers) specifying the stretch of the region."
262 262
263;;;###autoload 263;;;###autoload
264(defun viet-encode-viqr-buffer () 264(defun viet-encode-viqr-buffer ()
265 "Convert Vietnamese characaters of the current buffer to `VIQR' mnemonics." 265 "Convert Vietnamese characters of the current buffer to `VIQR' mnemonics."
266 (interactive) 266 (interactive)
267 (viet-encode-viqr-region (point-min) (point-max))) 267 (viet-encode-viqr-region (point-min) (point-max)))
268 268