diff options
| author | Stefan Monnier | 2007-10-09 05:05:39 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2007-10-09 05:05:39 +0000 |
| commit | 4f4a84ec801ea0d62d32a1b5679def1e16d3f813 (patch) | |
| tree | 86e671367bcef6d2b42e0a3ae0e1a83c32659f50 /src/ChangeLog | |
| parent | beb9f7453ae9a4473cf43a16c186a090d77c4b3b (diff) | |
| download | emacs-4f4a84ec801ea0d62d32a1b5679def1e16d3f813.tar.gz emacs-4f4a84ec801ea0d62d32a1b5679def1e16d3f813.zip | |
Add new `input-decode-map' keymap and use it for temrinal
escape sequences.
* keyboard.h (struct kboard): Add Vinput_decode_map.
Remove Vlocal_key_translation_map.
* keyboard.c (read_key_sequence): Add support for input-decode-map.
(init_kboard): Init input-decode-map.
Replace local-key-translation-map back with key-translation-map.
(syms_of_keyboard): Declare input-decode-map.
Remove local-key-translation-map. Update docstrings.
(mark_kboards): Mark Vinput_decode_map.
Don't mark Vlocal_key_translation_map.
* keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
Replace local-key-translation-map back with key-translation-map.
* term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
Bind in input-decode-map rather than function-key-map.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 9e1ef4b06f8..6374b29aedc 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,21 @@ | |||
| 1 | 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca> | 1 | 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 2 | ||
| 3 | Add new `input-decode-map' keymap and use it for temrinal | ||
| 4 | escape sequences. | ||
| 5 | * keyboard.h (struct kboard): Add Vinput_decode_map. | ||
| 6 | Remove Vlocal_key_translation_map. | ||
| 7 | * keyboard.c (read_key_sequence): Add support for input-decode-map. | ||
| 8 | (init_kboard): Init input-decode-map. | ||
| 9 | Replace local-key-translation-map back with key-translation-map. | ||
| 10 | (syms_of_keyboard): Declare input-decode-map. | ||
| 11 | Remove local-key-translation-map. Update docstrings. | ||
| 12 | (mark_kboards): Mark Vinput_decode_map. | ||
| 13 | Don't mark Vlocal_key_translation_map. | ||
| 14 | * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map. | ||
| 15 | Replace local-key-translation-map back with key-translation-map. | ||
| 16 | * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN): | ||
| 17 | Bind in input-decode-map rather than function-key-map. | ||
| 18 | |||
| 3 | * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore. | 19 | * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore. |
| 4 | This was made redundant by the previous introduction of XSETPVECTYPE. | 20 | This was made redundant by the previous introduction of XSETPVECTYPE. |
| 5 | 21 | ||