Skip to content

Commit

Permalink
Avoid #suspendedContext: to clear active context
Browse files Browse the repository at this point in the history
Newer versions of Squeak/Smalltalk call `#suspend` as part of it, which needs to be avoided.
  • Loading branch information
fniephaus committed Aug 20, 2022
1 parent a4b4aed commit fddca4e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"Remove active context."
Processor activeProcess suspendedContext: nil.
Processor activeProcess instVarNamed: #suspendedContext put: nil.

"Modify StartUpList for headless execution."
{EventSensor. Project} do: [:ea | Smalltalk removeFromStartUpList: ea].
Expand Down

0 comments on commit fddca4e

Please sign in to comment.