]> git.eshelyaron.com Git - emacs.git/commitdiff
(make-translation-table): Doc fix.
authorEli Zaretskii <eliz@gnu.org>
Thu, 8 Nov 2001 11:58:16 +0000 (11:58 +0000)
committerEli Zaretskii <eliz@gnu.org>
Thu, 8 Nov 2001 11:58:16 +0000 (11:58 +0000)
Suggested by Alex Schroeder <alex@gnu.org>.

lisp/ChangeLog
lisp/international/mule.el

index 61ee7df6dd33cbc8cad5424524abb3b9db20c6cf..b87a5b254309a8e3ced39a59b1ff61ab616c2d4d 100644 (file)
@@ -1,3 +1,8 @@
+2001-11-08  Eli Zaretskii  <eliz@is.elta.co.il>
+
+       * international/mule.el (make-translation-table): Doc fix.
+       Suggested by Alex Schroeder <alex@gnu.org>.
+
 2001-11-05  Richard M. Stallman  <rms@gnu.org>
 
        * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Return the value
index 67b76fdbd5ce57db9104269e00e825d60a6e3536..84701b4841e80103fd8faca69756f39da4627e78 100644 (file)
@@ -1535,14 +1535,14 @@ or a function symbol which, when called, returns such a cons cell."
 
 (defun make-translation-table (&rest args)
   "Make a translation table from arguments.
-A translation table is a char table intended for for character
+A translation table is a char table intended for character
 translation in CCL programs.
 
-Each argument is a list of elemnts of the form (FROM . TO), where FROM
+Each argument is a list of elements of the form (FROM . TO), where FROM
 is a character to be translated to TO.
 
 FROM can be a generic character (see `make-char').  In this case, TO is
-a generic character containing the same number of characters, or a
+a generic character containing the same number of characters, or an
 ordinary character.  If FROM and TO are both generic characters, all
 characters belonging to FROM are translated to characters belonging to TO
 without changing their position code(s).