The Trunk: System-eem.1521.mcz

[email protected] Thu, 2 Jul 2026 14:34:01 0000
Newsgroups gmane.comp.lang.smalltalk.squeak.general
Message-ID <[email protected]>
Eliot Miranda uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-eem.1521.mcz

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

Name: System-eem.1521
Author: eem
Time: 2 July 2026, 10:33:52.387189 am
UUID: b947292f-e7da-4968-a8d5-f5390d1c6e50
Ancestors: System-ct.1520

Avoid registering PackageInfo instances that are created merely for browing thingds localToPackage: (e.g. self systemNavigation browseAllcallsOn: #foo localToPackage: 'Compiler-Kernel'; we do noty want to create a working copy for 'Compiler-Kernel' when we have a working copy for the package 'Compiler')

=============== Diff against System-ct.1520 ===============

Item was changed:
  ----- Method: SystemNavigation>>packageInfoFor: (in category 'private') -----
  packageInfoFor: packageInfoOrString
  	^packageInfoOrString isString
+ 		ifTrue: [PackageInfo new packageName: packageInfoOrString]
- 		ifTrue: [PackageInfo named: packageInfoOrString]
  		ifFalse: [packageInfoOrString]!

Squeak-dev mailing list -- [email protected]
To unsubscribe send an email to [email protected]