07a490
			     BASH PATCH REPORT
07a490
			     =================
07a490
07a490
Bash-Release:	4.2
07a490
Patch-ID:	bash42-002
07a490
07a490
Bug-Reported-by:	Clark J. Wang <dearvoid@gmail.com>
07a490
Bug-Reference-ID:	<AANLkTimGbW7aC4E5infXP6ku5WPci4t=xVc+L1SyHqrD@mail.gmail.com>
07a490
Bug-Reference-URL:	http://lists.gnu.org/archive/html/bug-bash/2011-02/msg00157.html
07a490
07a490
Bug-Description:
07a490
07a490
The readline vi-mode `cc', `dd', and `yy' commands failed to modify the
07a490
entire line.
07a490
07a490
Patch (apply with `patch -p0'):
07a490
07a490
*** ../bash-4.2-patched/lib/readline/vi_mode.c	2010-11-20 19:51:39.000000000 -0500
07a490
--- lib/readline/vi_mode.c	2011-02-17 20:24:25.000000000 -0500
07a490
***************
07a490
*** 1115,1119 ****
07a490
        _rl_vi_last_motion = c;
07a490
        RL_UNSETSTATE (RL_STATE_VIMOTION);
07a490
!       return (0);
07a490
      }
07a490
  #if defined (READLINE_CALLBACKS)
07a490
--- 1115,1119 ----
07a490
        _rl_vi_last_motion = c;
07a490
        RL_UNSETSTATE (RL_STATE_VIMOTION);
07a490
!       return (vidomove_dispatch (m));
07a490
      }
07a490
  #if defined (READLINE_CALLBACKS)
07a490
*** ../bash-4.2-patched/lib/readline/callback.c	2010-06-06 12:18:58.000000000 -0400
07a490
--- lib/readline/callback.c	2011-02-17 20:43:28.000000000 -0500
07a490
***************
07a490
*** 149,152 ****
07a490
--- 149,155 ----
07a490
  	  /* Should handle everything, including cleanup, numeric arguments,
07a490
  	     and turning off RL_STATE_VIMOTION */
07a490
+ 	  if (RL_ISSTATE (RL_STATE_NUMERICARG) == 0)
07a490
+ 	    _rl_internal_char_cleanup ();
07a490
+ 
07a490
  	  return;
07a490
  	}
07a490
*** ../bash-4.2-patched/patchlevel.h	Sat Jun 12 20:14:48 2010
07a490
--- patchlevel.h	Thu Feb 24 21:41:34 2011
07a490
***************
07a490
*** 26,30 ****
07a490
     looks for to find the patch level (for the sccs version string). */
07a490
  
07a490
! #define PATCHLEVEL 1
07a490
  
07a490
  #endif /* _PATCHLEVEL_H_ */
07a490
--- 26,30 ----
07a490
     looks for to find the patch level (for the sccs version string). */
07a490
  
07a490
! #define PATCHLEVEL 2
07a490
  
07a490
  #endif /* _PATCHLEVEL_H_ */
07a490