Bash-4.2 patch 2
authorChet Ramey <chet.ramey@case.edu>
Wed, 23 Nov 2011 00:59:52 +0000 (19:59 -0500)
committerChet Ramey <chet.ramey@case.edu>
Wed, 23 Nov 2011 00:59:52 +0000 (19:59 -0500)
lib/readline/callback.c
lib/readline/vi_mode.c
patchlevel.h

index 4ee6361..7682cd0 100644 (file)
@@ -148,6 +148,9 @@ rl_callback_read_char ()
          eof = _rl_vi_domove_callback (_rl_vimvcxt);
          /* Should handle everything, including cleanup, numeric arguments,
             and turning off RL_STATE_VIMOTION */
+         if (RL_ISSTATE (RL_STATE_NUMERICARG) == 0)
+           _rl_internal_char_cleanup ();
+
          return;
        }
 #endif
index 41e1dbb..a3c3578 100644 (file)
@@ -1114,7 +1114,7 @@ rl_domove_read_callback (m)
       rl_beg_of_line (1, c);
       _rl_vi_last_motion = c;
       RL_UNSETSTATE (RL_STATE_VIMOTION);
-      return (0);
+      return (vidomove_dispatch (m));
     }
 #if defined (READLINE_CALLBACKS)
   /* XXX - these need to handle rl_universal_argument bindings */
index 2c576f5..9355623 100644 (file)
@@ -25,6 +25,6 @@
    regexp `^#define[   ]*PATCHLEVEL', since that's what support/mkversion.sh
    looks for to find the patch level (for the sccs version string). */
 
-#define PATCHLEVEL 1
+#define PATCHLEVEL 2
 
 #endif /* _PATCHLEVEL_H_ */