]> git.eshelyaron.com Git - emacs.git/commitdiff
(syms_of_coding) <translation-table-for-input>: Modify doc string to
authorEli Zaretskii <eliz@gnu.org>
Sat, 7 Feb 2009 10:52:13 +0000 (10:52 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sat, 7 Feb 2009 10:52:13 +0000 (10:52 +0000)
discourage use for character code unification.

etc/NEWS
src/ChangeLog
src/coding.c

index 502f83c65543cff2aa4b48520fce8f91fb604010..7aca85dc6651a921728aa773b623981bb224ea6d 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1530,7 +1530,9 @@ accept a cons of characters as the first argument, and modify all
 entries in that range of characters.
 
 +++
-*** `translation-table-for-input' is now obsolete.
+*** Use of `translation-table-for-input' for character code unification
+is now obsolete, since Emacs 23.1 and later uses Unicode as basis for
+internal representation of characters.
 
 *** New functions:
 
index e55bb633b5d4817fbb6d948f272dca86f01f41f5..67ef7ad46a51877be314a31b4fcfa473a941e4dc 100644 (file)
@@ -1,3 +1,8 @@
+2009-02-07  Eli Zaretskii  <eliz@gnu.org>
+
+       * coding.c (syms_of_coding) <translation-table-for-input>: Modify
+       doc string to discourage use for character code unification.
+
 2009-02-07  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
 
        * atimer.c (run_timers): Update pending_atimers.
index d35ece7f2739388eaa6823f4b86e1c09a154decd..313fac1526d968661b4738f77ab2b680028d5443 100644 (file)
@@ -10439,7 +10439,11 @@ decode text as usual.  */);
   DEFVAR_LISP ("translation-table-for-input", &Vtranslation_table_for_input,
               doc: /* Char table for translating self-inserting characters.
 This is applied to the result of input methods, not their input.
-See also `keyboard-translate-table'.  */);
+See also `keyboard-translate-table'.
+
+Use of this variable for character code unification was rendered
+obsolete in Emacs 23.1 and later, since Unicode is now the basis of
+internal character representation.  */);
     Vtranslation_table_for_input = Qnil;
 
   {