The Inbox: Files-cmm.182.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: Files-cmm.182.mcz

commits-2
Chris Muller uploaded a new version of Files to project The Inbox:
http://source.squeak.org/inbox/Files-cmm.182.mcz

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

Name: Files-cmm.182
Author: cmm
Time: 12 January 2020, 4:58:36.305575 pm
UUID: a0ade0a8-88e3-43ac-89e6-e557aff5230b
Ancestors: Files-tpr.181

Fix StandardFileStream>>#flush for the latest Spur VM's.

=============== Diff against Files-tpr.181 ===============

Item was changed:
  ----- Method: StandardFileStream>>flush (in category 'read, write, position') -----
  flush
  "Flush pending changes"
+ | pos |
+ pos := self position.
+ self reopen; position: pos!
- ^self primFlush: fileID!