1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-19 12:20:17 -08:00

(syms_of_coding) <translation-table-for-input>: Modify doc string to

discourage use for character code unification.
This commit is contained in:
Eli Zaretskii 2009-02-07 10:52:13 +00:00
parent 23f467da2f
commit 8434d0b8c0
3 changed files with 13 additions and 2 deletions

View 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;
{