aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-05-25 07:23:08 +0000
committerRichard M. Stallman1998-05-25 07:23:08 +0000
commit452fdb314d745cee97855821f83097c3a9904178 (patch)
tree13448427de9bc0e1266e8a73c07d54964b3f5acc
parent8a38e7724619830db952cf05d81713412c0fd461 (diff)
downloademacs-452fdb314d745cee97855821f83097c3a9904178.tar.gz
emacs-452fdb314d745cee97855821f83097c3a9904178.zip
(make-translation-table): Doc fix.
(define-translation-table): Doc fix.
-rw-r--r--lisp/international/mule.el10
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."
990Each argument is a list of the form (FROM . TO), 990Each argument is a list of the form (FROM . TO),
991where FROM is a character to be translated to TO. 991where FROM is a character to be translated to TO.
992 992
993FROM can be a generic character (see make-char). In this case, TO is 993FROM can be a generic character (see `make-char'). In this case, TO is
994a generic character containing the same number of charcters or a 994a generic character containing the same number of characters, or a
995oridinal character. If FROM and TO are both generic characters, all 995ordinary character. If FROM and TO are both generic characters, all
996characters belonging to FROM are translated to characters belonging to TO 996characters belonging to FROM are translated to characters belonging to TO
997without changing their position code(s)." 997without 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)."
1050See the documentation of the function `make-translation-table' for the 1050See the documentation of the function `make-translation-table' for the
1051meaning of ARGS. 1051meaning of ARGS.
1052 1052
1053This function sets properties translation-table and 1053This function sets properties `translation-table' and
1054translation-table-id of SYMBOL to the created table itself and 1054`translation-table-id' of SYMBOL to the created table itself and
1055identification number of the table respectively." 1055identification 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))