aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2001-11-08 11:34:00 +0000
committerEli Zaretskii2001-11-08 11:34:00 +0000
commitd38b07f9a9a9c20d7412ad313b9357bfdd3df481 (patch)
treed94dbf51f62d1b687467aa07d213a5a305c1afea
parent61763509f2b1c8ab244d7941acb1337b9154d819 (diff)
downloademacs-d38b07f9a9a9c20d7412ad313b9357bfdd3df481.tar.gz
emacs-d38b07f9a9a9c20d7412ad313b9357bfdd3df481.zip
(make-translation-table): Doc fix.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/international/mule.el6
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 @@
12001-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
12001-11-07 Per Abrahamsen <abraham@dina.kvl.dk> 62001-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.
1538A translation table is a char table intended for for character 1538A translation table is a char table intended for character
1539translation in CCL programs. 1539translation in CCL programs.
1540 1540
1541Each argument is a list of elemnts of the form (FROM . TO), where FROM 1541Each argument is a list of elements of the form (FROM . TO), where FROM
1542is a character to be translated to TO. 1542is a character to be translated to TO.
1543 1543
1544FROM can be a generic character (see `make-char'). In this case, TO is 1544FROM can be a generic character (see `make-char'). In this case, TO is
1545a generic character containing the same number of characters, or a 1545a generic character containing the same number of characters, or an
1546ordinary character. If FROM and TO are both generic characters, all 1546ordinary character. If FROM and TO are both generic characters, all
1547characters belonging to FROM are translated to characters belonging to TO 1547characters belonging to FROM are translated to characters belonging to TO
1548without changing their position code(s). 1548without changing their position code(s).