You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix issue in which bash-core's trap handling function would be unset too soon
Previously, it would beunset after the first core.trap_remove for a particular signal (even if there are other user-provided handlers left). Now, it's only unset until after all user-provided handlers for a particular signal have been removed (with core.trap_remove)
The bug was introduced in this revision, when fixing the calculation of our trap handler function name
Fix unseting incorrect variables after certain loops