Deleted Added
full compact
readline.c (119610) readline.c (125759)
1/* readline.c -- a general facility for reading lines of input
2 with emacs style editing and completion. */
3
4/* Copyright (C) 1987-2002 Free Software Foundation, Inc.
5
6 This file is part of the GNU Readline Library, a library for
7 reading lines of text with interactive input and history editing.
8

--- 670 unchanged lines hidden (view full) ---

679 macro = savestring ((char *)map[key].function);
680 _rl_with_macro_input (macro);
681 return 0;
682 }
683 break;
684 }
685#if defined (VI_MODE)
686 if (rl_editing_mode == vi_mode && _rl_keymap == vi_movement_keymap &&
1/* readline.c -- a general facility for reading lines of input
2 with emacs style editing and completion. */
3
4/* Copyright (C) 1987-2002 Free Software Foundation, Inc.
5
6 This file is part of the GNU Readline Library, a library for
7 reading lines of text with interactive input and history editing.
8

--- 670 unchanged lines hidden (view full) ---

679 macro = savestring ((char *)map[key].function);
680 _rl_with_macro_input (macro);
681 return 0;
682 }
683 break;
684 }
685#if defined (VI_MODE)
686 if (rl_editing_mode == vi_mode && _rl_keymap == vi_movement_keymap &&
687 key != ANYOTHERKEY &&
687 _rl_vi_textmod_command (key))
688 _rl_vi_set_last (key, rl_numeric_arg, rl_arg_sign);
689#endif
690 return (r);
691}
692
693/* **************************************************************** */
694/* */

--- 279 unchanged lines hidden ---
688 _rl_vi_textmod_command (key))
689 _rl_vi_set_last (key, rl_numeric_arg, rl_arg_sign);
690#endif
691 return (r);
692}
693
694/* **************************************************************** */
695/* */

--- 279 unchanged lines hidden ---