diff options
| author | Richard M. Stallman | 1998-05-25 07:23:08 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-05-25 07:23:08 +0000 |
| commit | 452fdb314d745cee97855821f83097c3a9904178 (patch) | |
| tree | 13448427de9bc0e1266e8a73c07d54964b3f5acc | |
| parent | 8a38e7724619830db952cf05d81713412c0fd461 (diff) | |
| download | emacs-452fdb314d745cee97855821f83097c3a9904178.tar.gz emacs-452fdb314d745cee97855821f83097c3a9904178.zip | |
(make-translation-table): Doc fix.
(define-translation-table): Doc fix.
| -rw-r--r-- | lisp/international/mule.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 38af074ab04..523a9802df4 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el | |||
| @@ -990,9 +990,9 @@ or a function symbol which, when called, returns such a cons cell." | |||
| 990 | Each argument is a list of the form (FROM . TO), | 990 | Each argument is a list of the form (FROM . TO), |
| 991 | where FROM is a character to be translated to TO. | 991 | where FROM is a character to be translated to TO. |
| 992 | 992 | ||
| 993 | FROM can be a generic character (see make-char). In this case, TO is | 993 | FROM can be a generic character (see `make-char'). In this case, TO is |
| 994 | a generic character containing the same number of charcters or a | 994 | a generic character containing the same number of characters, or a |
| 995 | oridinal character. If FROM and TO are both generic characters, all | 995 | ordinary character. If FROM and TO are both generic characters, all |
| 996 | characters belonging to FROM are translated to characters belonging to TO | 996 | characters belonging to FROM are translated to characters belonging to TO |
| 997 | without changing their position code(s)." | 997 | without changing their position code(s)." |
| 998 | (let ((table (make-char-table 'translation-table)) | 998 | (let ((table (make-char-table 'translation-table)) |
| @@ -1050,8 +1050,8 @@ without changing their position code(s)." | |||
| 1050 | See the documentation of the function `make-translation-table' for the | 1050 | See the documentation of the function `make-translation-table' for the |
| 1051 | meaning of ARGS. | 1051 | meaning of ARGS. |
| 1052 | 1052 | ||
| 1053 | This function sets properties translation-table and | 1053 | This function sets properties `translation-table' and |
| 1054 | translation-table-id of SYMBOL to the created table itself and | 1054 | `translation-table-id' of SYMBOL to the created table itself and |
| 1055 | identification number of the table respectively." | 1055 | identification number of the table respectively." |
| 1056 | (let ((table (apply 'make-translation-table args)) | 1056 | (let ((table (apply 'make-translation-table args)) |
| 1057 | (len (length translation-table-vector)) | 1057 | (len (length translation-table-vector)) |