Bash-5.0 patch 14: edit-and-execute-command does not handle empty command lines
This commit is contained in:
@@ -961,11 +961,8 @@ edit_and_execute_command (count, c, editing_mode, edit_command)
|
|||||||
/* This breaks down when using command-oriented history and are not
|
/* This breaks down when using command-oriented history and are not
|
||||||
finished with the command, so we should not ignore the last command */
|
finished with the command, so we should not ignore the last command */
|
||||||
using_history ();
|
using_history ();
|
||||||
if (rl_line_buffer[0])
|
|
||||||
{
|
|
||||||
current_command_line_count++; /* for rl_newline above */
|
current_command_line_count++; /* for rl_newline above */
|
||||||
bash_add_history (rl_line_buffer);
|
bash_add_history (rl_line_buffer);
|
||||||
}
|
|
||||||
current_command_line_count = 0; /* for dummy history entry */
|
current_command_line_count = 0; /* for dummy history entry */
|
||||||
bash_add_history ("");
|
bash_add_history ("");
|
||||||
history_lines_this_session++;
|
history_lines_this_session++;
|
||||||
|
|||||||
@@ -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 13
|
#define PATCHLEVEL 14
|
||||||
|
|
||||||
#endif /* _PATCHLEVEL_H_ */
|
#endif /* _PATCHLEVEL_H_ */
|
||||||
|
|||||||
Reference in New Issue
Block a user