]> git.eshelyaron.com Git - emacs.git/commitdiff
Docstrings fix.
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 20 Dec 2000 21:37:27 +0000 (21:37 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 20 Dec 2000 21:37:27 +0000 (21:37 +0000)
lisp/ChangeLog
lisp/international/iso-cvt.el

index a42840ea39a6ced376eee0ff64bbf0beb067cf36..835fb7ebfab4156ebf959cb39499c8aeb6344f10 100644 (file)
@@ -1,3 +1,7 @@
+2000-12-20  Stefan Monnier  <monnier@cs.yale.edu>
+
+       * international/iso-cvt.el: Docstrings fix.
+
 2000-12-20  Dave Love  <fx@gnu.org>
 
        * subr.el (eval-after-load): Doc fix.
index 8ea455b678ff297ba3d7550cfbc6ccde582a813d..44821419a31943b7d17c48612aa3f320240be5a3 100644 (file)
@@ -84,8 +84,7 @@
 (defun iso-spanish (from to &optional buffer)
   "Translate net conventions for Spanish to ISO 8859-1.
 The region between FROM and TO is translated using the table TRANS-TAB.
-Optional arg BUFFER is ignored (so that the function can can be used in
-`format-alist')."
+Optional arg BUFFER is ignored (for use in `format-alist')."
   (interactive "*r")
   (iso-translate-conventions from to iso-spanish-trans-tab))
 
@@ -126,8 +125,7 @@ little.")
 (defun iso-german (from to &optional buffer)
  "Translate net conventions for German to ISO 8859-1.
 The region between FROM and TO is translated using the table TRANS-TAB.
-Optional arg BUFFER is ignored (so that the function can can be used in
-`format-alist')."
+Optional arg BUFFER is ignored (for use in `format-alist')."
  (interactive "*r")
  (iso-translate-conventions from to iso-german-trans-tab))
  
@@ -199,8 +197,7 @@ Optional arg BUFFER is ignored (so that the function can can be used in
 (defun iso-iso2tex (from to &optional buffer)
  "Translate ISO 8859-1 characters to TeX sequences.
 The region between FROM and TO is translated using the table TRANS-TAB.
-Optional arg BUFFER is ignored (so that the function can can be used in
-`format-alist')."
+Optional arg BUFFER is ignored (for use in `format-alist')."
  (interactive "*r")
  (iso-translate-conventions from to iso-iso2tex-trans-tab))
 
@@ -386,8 +383,7 @@ contains commonly used sequences.")
 (defun iso-tex2iso (from to &optional buffer)
  "Translate TeX sequences to ISO 8859-1 characters.
 The region between FROM and TO is translated using the table TRANS-TAB.
-Optional arg BUFFER is ignored (so that the function can can be used in
-`format-alist')."
+Optional arg BUFFER is ignored (for use in `format-alist')."
  (interactive "*r")
  (iso-translate-conventions from to iso-tex2iso-trans-tab))
 
@@ -645,8 +641,7 @@ contains commonly used sequences.")
 (defun iso-gtex2iso (from to &optional buffer)
  "Translate German TeX sequences to ISO 8859-1 characters.
 The region between FROM and TO is translated using the table TRANS-TAB.
-Optional arg BUFFER is ignored (so that the function can can be used in
-`format-alist')."
+Optional arg BUFFER is ignored (for use in `format-alist')."
  (interactive "*r")
  (iso-translate-conventions from to iso-gtex2iso-trans-tab))
 
@@ -654,8 +649,7 @@ Optional arg BUFFER is ignored (so that the function can can be used in
 (defun iso-iso2gtex (from to &optional buffer)
  "Translate ISO 8859-1 characters to German TeX sequences.
 The region between FROM and TO is translated using the table TRANS-TAB.
-Optional arg BUFFER is ignored (so that the function can can be used in
-`format-alist')."
+Optional arg BUFFER is ignored (for use in `format-alist')."
  (interactive "*r")
  (iso-translate-conventions from to iso-iso2gtex-trans-tab))
 
@@ -672,8 +666,7 @@ Optional arg BUFFER is ignored (so that the function can can be used in
 (defun iso-iso2duden (from to &optional buffer)
  "Translate ISO 8859-1 characters to German TeX sequences.
 The region between FROM and TO is translated using the table TRANS-TAB.
-Optional arg BUFFER is ignored (so that the function can can be used in
-`format-alist')."
+Optional arg BUFFER is ignored (for use in `format-alist')."
  (interactive "*r")
  (iso-translate-conventions from to iso-iso2duden-trans-tab))
 
@@ -809,8 +802,7 @@ Optional arg BUFFER is ignored (so that the function can can be used in
 (defun iso-iso2sgml (from to &optional buffer)
  "Translate ISO 8859-1 characters in the region to SGML entities.
 The entities used are from \"ISO 8879:1986//ENTITIES Added Latin 1//EN\".
-Optional arg BUFFER is ignored (so that the function can can be used in
-`format-alist')."
+Optional arg BUFFER is ignored (for use in `format-alist')."
  (interactive "*r")
  (iso-translate-conventions from to iso-iso2sgml-trans-tab))
 
@@ -818,8 +810,7 @@ Optional arg BUFFER is ignored (so that the function can can be used in
 (defun iso-sgml2iso (from to &optional buffer)
  "Translate SGML entities in the region to ISO 8859-1 characters.
 The entities used are from \"ISO 8879:1986//ENTITIES Added Latin 1//EN\".
-Optional arg BUFFER is ignored (so that the function can can be used in
-`format-alist')."
+Optional arg BUFFER is ignored (for use in `format-alist')."
  (interactive "*r")
  (iso-translate-conventions from to iso-sgml2iso-trans-tab))