<div dir="ltr"><div dir="ltr">Hi Nicolas,<div><br></div><div>Is there a particular reason why the handlers should not be reactivated in resumeUnchecked:?</div><div><br></div><div>I used resumeUnchecked: in a test case, which got broken. In this particular case I don't remember the necessity for resumeUnchecked: and could make the test green again by changing to plain resume:.</div><div><br></div><div>Kind regards,<br>Jakob</div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Am Fr., 16. Apr. 2021 um 21:42 Uhr schrieb <<a href="mailto:commits@source.squeak.org">commits@source.squeak.org</a>>:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Nicolas Cellier uploaded a new version of Kernel to project The Trunk:<br>
<a href="http://source.squeak.org/trunk/Kernel-nice.1389.mcz" rel="noreferrer" target="_blank">http://source.squeak.org/trunk/Kernel-nice.1389.mcz</a><br>
<br>
==================== Summary ====================<br>
<br>
Name: Kernel-nice.1389<br>
Author: nice<br>
Time: 16 April 2021, 9:42:34.176501 pm<br>
UUID: 895e77fd-ce0e-484f-ad8a-00564ca98639<br>
Ancestors: Kernel-nice.1388<br>
<br>
Fix missing reactivation of handlers upon resume;<br>
<br>
It is the responsibility of handling actions to rearm the handlers that have been disabled during the search of active handler.<br>
<br>
=============== Diff against Kernel-nice.1388 ===============<br>
<br>
Item was changed:<br>
  ----- Method: Exception>>resume: (in category 'handling') -----<br>
  resume: resumptionValue<br>
        "Return resumptionValue as the value of the signal message."<br>
<br>
        self isResumable ifFalse: [IllegalResumeAttempt signal].<br>
+       self reactivateHandlers.<br>
        self resumeUnchecked: resumptionValue!<br>
<br>
<br>
</blockquote></div>