Bash-4.3 patch 11

This commit is contained in:
Chet Ramey 2014-04-11 11:05:31 -04:00
commit b7ec181036
2 changed files with 3 additions and 2 deletions

View file

@ -2677,7 +2677,8 @@ _rl_clean_up_for_exit ()
{ {
if (_rl_echoing_p) if (_rl_echoing_p)
{ {
_rl_move_vert (_rl_vis_botlin); if (_rl_vis_botlin > 0) /* minor optimization plus bug fix */
_rl_move_vert (_rl_vis_botlin);
_rl_vis_botlin = 0; _rl_vis_botlin = 0;
fflush (rl_outstream); fflush (rl_outstream);
rl_restart_output (1, 0); rl_restart_output (1, 0);

View file

@ -25,6 +25,6 @@
regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
looks for to find the patch level (for the sccs version string). */ looks for to find the patch level (for the sccs version string). */
#define PATCHLEVEL 10 #define PATCHLEVEL 11
#endif /* _PATCHLEVEL_H_ */ #endif /* _PATCHLEVEL_H_ */