summaryrefslogtreecommitdiff
path: root/lisp/international/iso-cvt.el
diff options
context:
space:
mode:
authorDave Love <fx@gnu.org>1998-02-27 17:05:21 +0000
committerDave Love <fx@gnu.org>1998-02-27 17:05:21 +0000
commitbe38bd1419a2e61f81746695666db8c36713ff11 (patch)
tree2409e04876d6a66987dad6353736dbc029dbd04a /lisp/international/iso-cvt.el
parent17193f89b75fce9aa864d1c873973af4adfce5da (diff)
downloademacs-be38bd1419a2e61f81746695666db8c36713ff11.tar.gz
(iso-spanish, iso-german, iso-iso2tex,
iso-tex2iso, iso-gtex2iso, iso-iso2gtex, iso-iso2duden): Fix doc, interactive spec.
Diffstat (limited to 'lisp/international/iso-cvt.el')
-rw-r--r--lisp/international/iso-cvt.el28
1 files changed, 14 insertions, 14 deletions
diff --git a/lisp/international/iso-cvt.el b/lisp/international/iso-cvt.el
index 09576ae201d..10022fd5698 100644
--- a/lisp/international/iso-cvt.el
+++ b/lisp/international/iso-cvt.el
@@ -85,8 +85,8 @@
(point-max))))
(defun iso-spanish (from to)
- "Translate net conventions for Spanish to ISO 8859-1."
- (interactive)
+ "Translate net conventions for Spanish to ISO 8859-1 in region."
+ (interactive "r")
(iso-translate-conventions from to iso-spanish-trans-tab))
(defvar iso-aggressive-german-trans-tab
@@ -124,8 +124,8 @@ little.")
"Currently active translation table for German.")
(defun iso-german (from to)
- "Translate net conventions for German to ISO 8859-1."
- (interactive)
+ "Translate net conventions for German to ISO 8859-1 in region."
+ (interactive "r")
(iso-translate-conventions from to iso-german-trans-tab))
(defvar iso-iso2tex-trans-tab
@@ -196,8 +196,8 @@ little.")
(defun iso-iso2tex (from to)
- "Translate ISO 8859-1 characters to TeX sequences."
- (interactive)
+ "Translate ISO 8859-1 characters to TeX sequences in region."
+ (interactive "r")
(iso-translate-conventions from to iso-iso2tex-trans-tab))
@@ -380,8 +380,8 @@ This table is not exhaustive (and due to TeX's power can never be). It only
contains commonly used sequences.")
(defun iso-tex2iso (from to)
- "Translate TeX sequences to ISO 8859-1 characters."
- (interactive)
+ "Translate TeX sequences to ISO 8859-1 characters in region."
+ (interactive "r")
(iso-translate-conventions from to iso-tex2iso-trans-tab))
(defvar iso-gtex2iso-trans-tab
@@ -635,14 +635,14 @@ contains commonly used sequences.")
"Translation table for translating ISO 8859-1 characters to German TeX.")
(defun iso-gtex2iso (from to)
- "Translate German TeX sequences to ISO 8859-1 characters."
- (interactive)
+ "Translate German TeX sequences to ISO 8859-1 characters in region."
+ (interactive "r")
(iso-translate-conventions from to iso-gtex2iso-trans-tab))
(defun iso-iso2gtex (from to)
- "Translate ISO 8859-1 characters to German TeX sequences."
- (interactive)
+ "Translate ISO 8859-1 characters to German TeX sequences in region."
+ (interactive "r")
(iso-translate-conventions from to iso-iso2gtex-trans-tab))
(defvar iso-iso2duden-trans-tab
@@ -655,8 +655,8 @@ contains commonly used sequences.")
("ß" "ss")))
(defun iso-iso2duden (from to)
- "Translate ISO 8859-1 characters to German TeX sequences."
- (interactive)
+ "Translate ISO 8859-1 characters to German TeX sequences in region."
+ (interactive "r")
(iso-translate-conventions from to iso-iso2duden-trans-tab))
(defun iso-cvt-read-only ()