aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 209761574f8..efb3a8d2aad 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,29 @@
12002-02-23 Kim F. Storm <no-spam@cua.dk>
2
3 The following changes rework my patch of 2002-02-06 which
4 added command remapping by entering the commands directly into
5 the keymaps. Now, command remapping uses an explicit `remap'
6 prefix in the keymaps, i.e. [remap COMMAND].
7
8 * keymap.c (Qremap, remap_command_vector): New variables.
9 (is_command_symbol): Removed function.
10 (Fdefine_key): No longer accept a symbol for KEY. Added
11 validation of [remap COMMAND] argument for KEY. The DEF is no
12 longer required to be a symbol when remapping a command.
13 (Fremap_command): New function to remap command through keymaps.
14 (Flookup_key): Perform command remapping initiated by
15 Fremap_command directly for speed.
16 (Fkey_binding): Use Fremap_command for command remapping.
17 (where_is_internal): Handle new command remapping representation.
18 (syms_of_keymap): Intern Qremap, initialize remap_command_vector,
19 staticpro them. Defsubr Fremap_command.
20
21 * keymap.h (Fremap_command): Declare extern.
22 (is_command_symbol): Remove extern.
23
24 * keyboard.c (command_loop_1): Use Fremap_command for command
25 remapping; now try command remapping for all symbols.
26
12002-02-23 Eli Zaretskii <eliz@is.elta.co.il> 272002-02-23 Eli Zaretskii <eliz@is.elta.co.il>
2 28
3 * coding.h (run_pre_post_conversion_on_str): Add prototype. 29 * coding.h (run_pre_post_conversion_on_str): Add prototype.