[squeak-dev] The Trunk: Kernel-eem.1488.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Jul 26 18:59:49 UTC 2022


Eliot Miranda uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-eem.1488.mcz

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

Name: Kernel-eem.1488
Author: eem
Time: 26 July 2022, 11:59:44.968962 am
UUID: fb63409e-0be1-4ab5-a3e6-98d7313bc5d7
Ancestors: Kernel-ct.1487

Fix the formatting of BlockClosure>>forkAt:named:

=============== Diff against Kernel-ct.1487 ===============

Item was changed:
  ----- Method: BlockClosure>>forkAt:named: (in category 'scheduling') -----
  forkAt: priority named: name
- 
  	"Create and schedule a Process running the code in the receiver at the
+ 	 given priority and having the given name. Answer the newly created 
+ 	 process. was svp 6/23/2003 10:59"
  
- 	given priority and having the given name. Answer the newly created 
- 
- 	process."
- 
- 
- 
  	| forkedProcess |
- 
  	forkedProcess := self newProcess.
- 
  	forkedProcess priority: priority.
- 
  	forkedProcess name: name.
- 
  	^ forkedProcess resume!



More information about the Squeak-dev mailing list