diff options
| author | Eli Zaretskii | 2001-11-08 11:34:00 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-11-08 11:34:00 +0000 |
| commit | d38b07f9a9a9c20d7412ad313b9357bfdd3df481 (patch) | |
| tree | d94dbf51f62d1b687467aa07d213a5a305c1afea | |
| parent | 61763509f2b1c8ab244d7941acb1337b9154d819 (diff) | |
| download | emacs-d38b07f9a9a9c20d7412ad313b9357bfdd3df481.tar.gz emacs-d38b07f9a9a9c20d7412ad313b9357bfdd3df481.zip | |
(make-translation-table): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/international/mule.el | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fa34d37b9cf..a8edf2219c0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2001-11-08 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * international/mule.el (make-translation-table): Doc fix. | ||
| 4 | Suggested by Alex Schroeder <alex@gnu.org>. | ||
| 5 | |||
| 1 | 2001-11-07 Per Abrahamsen <abraham@dina.kvl.dk> | 6 | 2001-11-07 Per Abrahamsen <abraham@dina.kvl.dk> |
| 2 | 7 | ||
| 3 | * cus-edit.el (custom-face-value-create): Don't ignore the | 8 | * cus-edit.el (custom-face-value-create): Don't ignore the |
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." | |||
| 1535 | 1535 | ||
| 1536 | (defun make-translation-table (&rest args) | 1536 | (defun make-translation-table (&rest args) |
| 1537 | "Make a translation table from arguments. | 1537 | "Make a translation table from arguments. |
| 1538 | A translation table is a char table intended for for character | 1538 | A translation table is a char table intended for character |
| 1539 | translation in CCL programs. | 1539 | translation in CCL programs. |
| 1540 | 1540 | ||
| 1541 | Each argument is a list of elemnts of the form (FROM . TO), where FROM | 1541 | Each argument is a list of elements of the form (FROM . TO), where FROM |
| 1542 | is a character to be translated to TO. | 1542 | is a character to be translated to TO. |
| 1543 | 1543 | ||
| 1544 | FROM can be a generic character (see `make-char'). In this case, TO is | 1544 | FROM can be a generic character (see `make-char'). In this case, TO is |
| 1545 | a generic character containing the same number of characters, or a | 1545 | a generic character containing the same number of characters, or an |
| 1546 | ordinary character. If FROM and TO are both generic characters, all | 1546 | ordinary character. If FROM and TO are both generic characters, all |
| 1547 | characters belonging to FROM are translated to characters belonging to TO | 1547 | characters belonging to FROM are translated to characters belonging to TO |
| 1548 | without changing their position code(s). | 1548 | without changing their position code(s). |