You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.1 KiB

  1. BASH PATCH REPORT
  2. =================
  3. Bash-Release: 4.3
  4. Patch-ID: bash43-004
  5. Bug-Reported-by: Daan van Rossum <daan@flash.uchicago.edu>
  6. Bug-Reference-ID: <20140307072523.GA14250@flash.uchicago.edu>
  7. Bug-Reference-URL:
  8. Bug-Description:
  9. The `.' command in vi mode cannot undo multi-key commands beginning with
  10. `c', `d', and `y' (command plus motion specifier).
  11. Patch (apply with `patch -p0'):
  12. --- a/lib/readline/readline.c
  13. +++ b/lib/readline/readline.c
  14. @@ -965,7 +965,7 @@ _rl_dispatch_subseq (key, map, got_subse
  15. #if defined (VI_MODE)
  16. if (rl_editing_mode == vi_mode && _rl_keymap == vi_movement_keymap &&
  17. key != ANYOTHERKEY &&
  18. - rl_key_sequence_length == 1 && /* XXX */
  19. + _rl_dispatching_keymap == vi_movement_keymap &&
  20. _rl_vi_textmod_command (key))
  21. _rl_vi_set_last (key, rl_numeric_arg, rl_arg_sign);
  22. #endif
  23. --- a/patchlevel.h
  24. +++ b/patchlevel.h
  25. @@ -25,6 +25,6 @@
  26. regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
  27. looks for to find the patch level (for the sccs version string). */
  28. -#define PATCHLEVEL 3
  29. +#define PATCHLEVEL 4
  30. #endif /* _PATCHLEVEL_H_ */