From: Eli Zaretskii Date: Thu, 8 Nov 2001 11:58:16 +0000 (+0000) Subject: (make-translation-table): Doc fix. X-Git-Tag: emacs-21.2~346 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d983369b03bec339cc53f00fe33081a6c15d32e6;p=emacs.git (make-translation-table): Doc fix. Suggested by Alex Schroeder . --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 61ee7df6dd3..b87a5b25430 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2001-11-08 Eli Zaretskii + + * international/mule.el (make-translation-table): Doc fix. + Suggested by Alex Schroeder . + 2001-11-05 Richard M. Stallman * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Return the value diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 67b76fdbd5c..84701b4841e 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el @@ -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).