Diff for /embedaddon/readline/emacs_keymap.c between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2014/07/30 08:16:45 version 1.1.1.2, 2021/03/17 01:01:01
Line 1 Line 1
 /* emacs_keymap.c -- the keymap for emacs_mode in readline (). */  /* emacs_keymap.c -- the keymap for emacs_mode in readline (). */
   
/* Copyright (C) 1987-2009 Free Software Foundation, Inc./* Copyright (C) 1987-2017 Free Software Foundation, Inc.
   
    This file is part of the GNU Readline Library (Readline), a library     This file is part of the GNU Readline Library (Readline), a library
    for reading lines of text with interactive input and history editing.           for reading lines of text with interactive input and history editing.      
Line 47  KEYMAP_ENTRY_ARRAY emacs_standard_keymap = { Line 47  KEYMAP_ENTRY_ARRAY emacs_standard_keymap = {
   { ISFUNC, rl_clear_screen },                  /* Control-l */    { ISFUNC, rl_clear_screen },                  /* Control-l */
   { ISFUNC, rl_newline },                       /* Control-m */    { ISFUNC, rl_newline },                       /* Control-m */
   { ISFUNC, rl_get_next_history },              /* Control-n */    { ISFUNC, rl_get_next_history },              /* Control-n */
  { ISFUNC, (rl_command_func_t *)0x0 },             /* Control-o */  { ISFUNC, rl_operate_and_get_next },             /* Control-o */
   { ISFUNC, rl_get_previous_history },          /* Control-p */    { ISFUNC, rl_get_previous_history },          /* Control-p */
   { ISFUNC, rl_quoted_insert },                 /* Control-q */    { ISFUNC, rl_quoted_insert },                 /* Control-q */
   { ISFUNC, rl_reverse_search_history },        /* Control-r */    { ISFUNC, rl_reverse_search_history },        /* Control-r */
Line 327  KEYMAP_ENTRY_ARRAY emacs_meta_keymap = { Line 327  KEYMAP_ENTRY_ARRAY emacs_meta_keymap = {
   { ISFUNC, rl_tab_insert },            /* Meta-Control-i */    { ISFUNC, rl_tab_insert },            /* Meta-Control-i */
   { ISFUNC, rl_vi_editing_mode },       /* Meta-Control-j */    { ISFUNC, rl_vi_editing_mode },       /* Meta-Control-j */
   { ISFUNC, (rl_command_func_t *)0x0 }, /* Meta-Control-k */    { ISFUNC, (rl_command_func_t *)0x0 }, /* Meta-Control-k */
  { ISFUNC, (rl_command_func_t *)0x0 },        /* Meta-Control-l */  { ISFUNC, rl_clear_display },         /* Meta-Control-l */
   { ISFUNC, rl_vi_editing_mode },       /* Meta-Control-m */    { ISFUNC, rl_vi_editing_mode },       /* Meta-Control-m */
   { ISFUNC, (rl_command_func_t *)0x0 }, /* Meta-Control-n */    { ISFUNC, (rl_command_func_t *)0x0 }, /* Meta-Control-n */
   { ISFUNC, (rl_command_func_t *)0x0 }, /* Meta-Control-o */    { ISFUNC, (rl_command_func_t *)0x0 }, /* Meta-Control-o */

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>