diff options
| author | Dave Love | 2002-11-09 12:49:31 +0000 |
|---|---|---|
| committer | Dave Love | 2002-11-09 12:49:31 +0000 |
| commit | 15c8f9d1adc45d8bd08a213c511bfb8175ccbd75 (patch) | |
| tree | cc690a840d460cb834af629c75a563d2e4e93766 | |
| parent | a0acc6c756e59f6d0cef68dc703e660c9954ff60 (diff) | |
| download | emacs-15c8f9d1adc45d8bd08a213c511bfb8175ccbd75.tar.gz emacs-15c8f9d1adc45d8bd08a213c511bfb8175ccbd75.zip | |
(Vtranslation_table_for_input): New.
(syms_of_coding): DEFVAR it.
| -rw-r--r-- | src/coding.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c index bdba5fa3760..fcb1d630cdb 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -7562,7 +7562,9 @@ escape sequence (e.g `latin-1') on reading by \\[universal-coding-system-argumen | |||
| 7562 | inhibit_iso_escape_detection = 0; | 7562 | inhibit_iso_escape_detection = 0; |
| 7563 | 7563 | ||
| 7564 | DEFVAR_LISP ("translation-table-for-input", &Vtranslation_table_for_input, | 7564 | DEFVAR_LISP ("translation-table-for-input", &Vtranslation_table_for_input, |
| 7565 | doc: /* Char table for translating self-inserting characters. */); | 7565 | doc: /* Char table for translating self-inserting characters. |
| 7566 | This is applied to the result of input methods, not their input. See also | ||
| 7567 | `keyboard-translate-table'. */); | ||
| 7566 | Vtranslation_table_for_input = Qnil; | 7568 | Vtranslation_table_for_input = Qnil; |
| 7567 | } | 7569 | } |
| 7568 | 7570 | ||