'From Squeak3.8alpha of ''17 July 2004'' [latest update: #5976] on 6 August 2004 at 9:46:21 am'! "Change Set: 0228skipFix Date: 6 August 2004 Author: Yoshiki Ohshima, Michael Rueger Undo a questionable change to PositionableStream skip: . It needs to be fixed properly later."! !PositionableStream methodsFor: 'positioning'! skip: anInteger "Set the receiver's position to be the current position+anInteger. A subclass might choose to be more helpful and select the minimum of the receiver's size and position+anInteger, or the maximum of 1 and position+anInteger for the repositioning." self position: position + anInteger! !