diff options
| author | Eli Zaretskii | 2009-02-07 10:52:13 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2009-02-07 10:52:13 +0000 |
| commit | 8434d0b8c0fe9870c4cf97079c69e29995e8f1e7 (patch) | |
| tree | f604ae282b1e4c2685b0935735e0b6d0f4fae253 /src/coding.c | |
| parent | 23f467da2fe0e3d5ae4326e3de3d736fad2fe59d (diff) | |
| download | emacs-8434d0b8c0fe9870c4cf97079c69e29995e8f1e7.tar.gz emacs-8434d0b8c0fe9870c4cf97079c69e29995e8f1e7.zip | |
(syms_of_coding) <translation-table-for-input>: Modify doc string to
discourage use for character code unification.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 6 |
1 files changed, 5 insertions, 1 deletions
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. |
| 10441 | This is applied to the result of input methods, not their input. | 10441 | This is applied to the result of input methods, not their input. |
| 10442 | See also `keyboard-translate-table'. */); | 10442 | See also `keyboard-translate-table'. |
| 10443 | |||
| 10444 | Use of this variable for character code unification was rendered | ||
| 10445 | obsolete in Emacs 23.1 and later, since Unicode is now the basis of | ||
| 10446 | internal character representation. */); | ||
| 10443 | Vtranslation_table_for_input = Qnil; | 10447 | Vtranslation_table_for_input = Qnil; |
| 10444 | 10448 | ||
| 10445 | { | 10449 | { |