[squeak-dev] The Trunk: Kernel-nice.1389.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Apr 16 19:42:45 UTC 2021


Nicolas Cellier uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-nice.1389.mcz

==================== Summary ====================

Name: Kernel-nice.1389
Author: nice
Time: 16 April 2021, 9:42:34.176501 pm
UUID: 895e77fd-ce0e-484f-ad8a-00564ca98639
Ancestors: Kernel-nice.1388

Fix missing reactivation of handlers upon resume;

It is the responsibility of handling actions to rearm the handlers that have been disabled during the search of active handler.

=============== Diff against Kernel-nice.1388 ===============

Item was changed:
  ----- Method: Exception>>resume: (in category 'handling') -----
  resume: resumptionValue
  	"Return resumptionValue as the value of the signal message."
  
  	self isResumable ifFalse: [IllegalResumeAttempt signal].
+ 	self reactivateHandlers.
  	self resumeUnchecked: resumptionValue!



More information about the Squeak-dev mailing list