mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-07-03 18:30:49 +02:00
fix for exit builtin when ignoreeof set; better resource deallocation when completion is interrupted; fix small memleak in globbing; compile out obsolete readline typedefs by default; readline callback mode doesn't print signal chars by default; xtrace mode prefers to use $'...' quoting if required
This commit is contained in:
@@ -183,7 +183,7 @@ reader_loop (void)
|
||||
current_command = (COMMAND *)NULL;
|
||||
}
|
||||
}
|
||||
if (EOF_Reached && interactive && ignoreeof && parse_and_execute_level == 0)
|
||||
if (EOF_Reached && interactive && ignoreeof && parse_and_execute_level == 0 && code != EXITBLTIN)
|
||||
{
|
||||
if (handle_ignoreeof (1))
|
||||
EOF_Reached = 0;
|
||||
|
||||
Reference in New Issue
Block a user