commit bash-20160902 snapshot

This commit is contained in:
Chet Ramey
2016-09-27 10:37:44 -04:00
parent 79eedac429
commit 4d63a61942
102 changed files with 12403 additions and 12293 deletions
+6 -2
View File
@@ -581,14 +581,18 @@ handle_error:
#endif
RL_CHECK_SIGNALS ();
/* non-keyboard-generated signals of interest */
#if defined (SIGWINCH)
else if (_rl_caught_signal == SIGWINCH)
RL_CHECK_SIGNALS ();
#endif /* SIGWINCH */
#if defined (SIGALRM)
else if (_rl_caught_signal == SIGALRM
#if defined (SIGVTALRM)
# if defined (SIGVTALRM)
|| _rl_caught_signal == SIGVTALRM
#endif
# endif
)
RL_CHECK_SIGNALS ();
#endif /* SIGALRM */
if (rl_signal_event_hook)
(*rl_signal_event_hook) ();