Eliot Miranda uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-eem.949.mcz==================== Summary ====================
Name: Kernel-eem.949
Author: eem
Time: 28 August 2015, 10:22:44.926 am
UUID: d9195787-aea0-48b2-afd4-c3961b86b568
Ancestors: Kernel-eem.948
#~~ has a primitive. Use it.
=============== Diff against Kernel-eem.948 ===============
Item was changed:
----- Method: ProtoObject>>~~ (in category 'comparing') -----
~~ anObject
"Answer whether the receiver and the argument are not the same object
+ (do not have the same object pointer). Primitive. Optional."
+ <primitive: 169>
+ self == anObject ifTrue: [^false].
+ ^true!
- (do not have the same object pointer)."
-
- self == anObject
- ifTrue: [^ false]
- ifFalse: [^ true]!