Nicolas Cellier uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-nice.361.mcz==================== Summary ====================
Name: Monticello-nice.361
Author: nice
Time: 4 February 2010, 8:53:41.063 pm
UUID: 56628218-ad46-420b-9754-0a94cf4b3a5b
Ancestors: Monticello-nice.360
move a temp assignment outside block
=============== Diff against Monticello-nice.360 ===============
Item was changed:
----- Method: ChangeList class>>recent:on: (in category '*monticello') -----
recent: charCount on: origChangesFile
"Opens a changeList on the end of the specified changes log file"
| changeList end changesFile |
changesFile := origChangesFile readOnlyCopy.
end := changesFile size.
+ changeList := Cursor read
+ showWhile: [self new
- Cursor read
- showWhile: [changeList := self new
scanFile: changesFile
from: (0 max: end - charCount)
to: end].
changesFile close.
^changeList!