[squeak-dev] The Trunk: Collections-cmm.541.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Oct 15 19:09:41 UTC 2013


Chris Muller uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-cmm.541.mcz

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

Name: Collections-cmm.541
Author: cmm
Time: 15 October 2013, 2:08:54.58 pm
UUID: 412ef59f-6c4a-4844-94b8-137546e2f0f0
Ancestors: Collections-nice.540

- Revert addition of WriteStream>>#endEntry.
- Fix to recent Transcripter change.

=============== Diff against Collections-nice.540 ===============

Item was changed:
  ----- Method: Transcripter>>readEvalPrint (in category 'command line') -----
  readEvalPrint
  	| line okToRevert |
  	okToRevert := true.
  	[#('quit' 'exit' 'done' ) includes: (line := self request: '>')]
  		whileFalse:
  		[line = 'revert'
  		ifTrue: [okToRevert
+ 			ifTrue: [RecentMessages default revertMostRecent.
- 			ifTrue: [RecentMessages default revertLastMethodSubmission.
  					self cr; show: 'reverted: ' , RecentMessages default mostRecent.
  					okToRevert := false]
  			ifFalse: [self cr; show: 'Only one level of revert currently supported']]
  		ifFalse: [self cr; show: ([Compiler evaluate: line] ifError: [:err :ex | err])]]!

Item was removed:
- ----- Method: WriteStream>>endEntry (in category 'compatibility') -----
- endEntry
- 	"No-op for compatibility with TranscriptStream."!

Item was changed:
+ ----- Method: WriteStream>>flush (in category 'accessing') -----
- ----- Method: WriteStream>>flush (in category 'compatibility') -----
  flush!



More information about the Squeak-dev mailing list