1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-27 10:54:40 +00:00

(make-translation-table): Doc fix.

This commit is contained in:
Eli Zaretskii 2001-11-08 11:34:00 +00:00
parent 61763509f2
commit d38b07f9a9
2 changed files with 8 additions and 3 deletions

View 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-07 Per Abrahamsen <abraham@dina.kvl.dk>
* cus-edit.el (custom-face-value-create): Don't ignore the

View 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).