Mercurial > emacs
comparison src/keyboard.c @ 83171:09bbf2fc80da
Merged in changes from CVS trunk.
Patches applied:
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-439
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-440
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-441
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-442
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-443
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-444
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-445
Tweak permissions
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-446
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-211
author | Karoly Lorentey <lorentey@elte.hu> |
---|---|
date | Sat, 10 Jul 2004 14:37:36 +0000 |
parents | 952f7cc8274d 2616c5cc9611 |
children | 6b4b299e2cd5 |
comparison
equal
deleted
inserted
replaced
83170:952f7cc8274d | 83171:09bbf2fc80da |
---|---|
11283 Useful to set before you dump a modified Emacs. */); | 11283 Useful to set before you dump a modified Emacs. */); |
11284 Vtop_level = Qnil; | 11284 Vtop_level = Qnil; |
11285 | 11285 |
11286 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table, | 11286 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table, |
11287 doc: /* Translate table for keyboard input, or nil. | 11287 doc: /* Translate table for keyboard input, or nil. |
11288 Each character is looked up in this string and the contents used instead. | 11288 If non-nil, the value should be a char-table. Each character read |
11289 The value may be a string, a vector, or a char-table. | 11289 from the keyboard is looked up in this char-table. If the value found |
11290 If it is a string or vector of length N, | 11290 there is non-nil, then it is used instead of the actual input character. |
11291 character codes N and up are untranslated. | 11291 |
11292 In a vector or a char-table, an element which is nil means "no translation". | 11292 The value can also be a string or vector, but this is considered obsolete. |
11293 If it is a string or vector of length N, character codes N and up are left | |
11294 untranslated. In a vector, an element which is nil means "no translation". | |
11293 | 11295 |
11294 This is applied to the characters supplied to input methods, not their | 11296 This is applied to the characters supplied to input methods, not their |
11295 output. See also `translation-table-for-input'. */); | 11297 output. See also `translation-table-for-input'. */); |
11296 Vkeyboard_translate_table = Qnil; | 11298 Vkeyboard_translate_table = Qnil; |
11297 | 11299 |