From: Eli Zaretskii Date: Sat, 7 Feb 2009 10:52:13 +0000 (+0000) Subject: (syms_of_coding) : Modify doc string to X-Git-Tag: emacs-pretest-23.0.91~364 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8434d0b8c0fe9870c4cf97079c69e29995e8f1e7;p=emacs.git (syms_of_coding) : Modify doc string to discourage use for character code unification. --- 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 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: diff --git a/src/ChangeLog b/src/ChangeLog index e55bb633b5d..67ef7ad46a5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2009-02-07 Eli Zaretskii + + * coding.c (syms_of_coding) : Modify + doc string to discourage use for character code unification. + 2009-02-07 YAMAMOTO Mitsuharu * 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. */); 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; {