summaryrefslogtreecommitdiff
path: root/emacs_keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'emacs_keymap.c')
-rw-r--r--emacs_keymap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs_keymap.c b/emacs_keymap.c
index e2f2b30..ca9d134 100644
--- a/emacs_keymap.c
+++ b/emacs_keymap.c
@@ -35,11 +35,11 @@ KEYMAP_ENTRY_ARRAY emacs_standard_keymap = {
/* Control keys. */
{ ISFUNC, rl_set_mark }, /* Control-@ */
{ ISFUNC, rl_beg_of_line }, /* Control-a */
- { ISFUNC, rl_backward }, /* Control-b */
+ { ISFUNC, rl_backward_char }, /* Control-b */
{ ISFUNC, (rl_command_func_t *)0x0 }, /* Control-c */
{ ISFUNC, rl_delete }, /* Control-d */
{ ISFUNC, rl_end_of_line }, /* Control-e */
- { ISFUNC, rl_forward }, /* Control-f */
+ { ISFUNC, rl_forward_char }, /* Control-f */
{ ISFUNC, rl_abort }, /* Control-g */
{ ISFUNC, rl_rubout }, /* Control-h */
{ ISFUNC, rl_complete }, /* Control-i */