aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2009-02-07 10:52:13 +0000
committerEli Zaretskii2009-02-07 10:52:13 +0000
commit8434d0b8c0fe9870c4cf97079c69e29995e8f1e7 (patch)
treef604ae282b1e4c2685b0935735e0b6d0f4fae253
parent23f467da2fe0e3d5ae4326e3de3d736fad2fe59d (diff)
downloademacs-8434d0b8c0fe9870c4cf97079c69e29995e8f1e7.tar.gz
emacs-8434d0b8c0fe9870c4cf97079c69e29995e8f1e7.zip
(syms_of_coding) <translation-table-for-input>: Modify doc string to
discourage use for character code unification.
-rw-r--r--etc/NEWS4
-rw-r--r--src/ChangeLog5
-rw-r--r--src/coding.c6
3 files changed, 13 insertions, 2 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 502f83c6554..7aca85dc665 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1530,7 +1530,9 @@ accept a cons of characters as the first argument, and modify all
1530entries in that range of characters. 1530entries in that range of characters.
1531 1531
1532+++ 1532+++
1533*** `translation-table-for-input' is now obsolete. 1533*** Use of `translation-table-for-input' for character code unification
1534is now obsolete, since Emacs 23.1 and later uses Unicode as basis for
1535internal representation of characters.
1534 1536
1535*** New functions: 1537*** New functions:
1536 1538
diff --git a/src/ChangeLog b/src/ChangeLog
index e55bb633b5d..67ef7ad46a5 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12009-02-07 Eli Zaretskii <eliz@gnu.org>
2
3 * coding.c (syms_of_coding) <translation-table-for-input>: Modify
4 doc string to discourage use for character code unification.
5
12009-02-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 62009-02-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2 7
3 * atimer.c (run_timers): Update pending_atimers. 8 * atimer.c (run_timers): Update pending_atimers.
diff --git a/src/coding.c b/src/coding.c
index d35ece7f273..313fac1526d 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -10439,7 +10439,11 @@ decode text as usual. */);
10439 DEFVAR_LISP ("translation-table-for-input", &Vtranslation_table_for_input, 10439 DEFVAR_LISP ("translation-table-for-input", &Vtranslation_table_for_input,
10440 doc: /* Char table for translating self-inserting characters. 10440 doc: /* Char table for translating self-inserting characters.
10441This is applied to the result of input methods, not their input. 10441This is applied to the result of input methods, not their input.
10442See also `keyboard-translate-table'. */); 10442See also `keyboard-translate-table'.
10443
10444Use of this variable for character code unification was rendered
10445obsolete in Emacs 23.1 and later, since Unicode is now the basis of
10446internal character representation. */);
10443 Vtranslation_table_for_input = Qnil; 10447 Vtranslation_table_for_input = Qnil;
10444 10448
10445 { 10449 {