[squeak-dev] The Trunk: Tools-eem.738.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Dec 20 22:15:48 UTC 2016


Eliot Miranda uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-eem.738.mcz

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

Name: Tools-eem.738
Author: eem
Time: 20 December 2016, 2:15:33.753612 pm
UUID: 71a932b5-137d-49ba-8db9-9bb8e074b37e
Ancestors: Tools-cmm.737

Fix regression in RecentMessages due to Tools-eem.736.  Use MethodReference comparison instead of funky string comparison.

=============== Diff against Tools-cmm.737 ===============

Item was changed:
  ----- Method: RecentMessageSet>>updateListsAndCodeIn: (in category 'update') -----
  updateListsAndCodeIn: aWindow 
+ 	self canDiscardEdits ifFalse: [^self].
+ 	RecentMessages default isEmpty ifTrue: [^self].
+ 	(messageList isEmpty
+ 	 or: [RecentMessages default mostRecent = messageList first])
+ 		ifTrue: [self updateCodePaneIfNeeded]
+ 		ifFalse: [self reformulateList]!
- 	| recentFromUtilities |
- 	self canDiscardEdits ifFalse: [ ^ self ].
- 	RecentMessages default isEmpty ifTrue: [ ^ self ].
- 	recentFromUtilities := RecentMessages default mostRecent asString , ' '.
- 	(messageList isEmpty or: [ messageList first asStringOrText asString beginsWith: recentFromUtilities ])
- 		ifTrue: [ self updateCodePaneIfNeeded ]
- 		ifFalse: [ self reformulateList ]!



More information about the Squeak-dev mailing list