[squeak-dev] The Trunk: Morphic-eem.1597.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Dec 1 03:05:31 UTC 2019


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

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

Name: Morphic-eem.1597
Author: eem
Time: 30 November 2019, 7:05:24.872005 pm
UUID: 068e0786-10ca-433e-9ec1-7c5cc2a15942
Ancestors: Morphic-eem.1596

Fix regression from hurried programming. Apologies!

=============== Diff against Morphic-eem.1596 ===============

Item was added:
+ ----- Method: TextEditor>>selectedLiteral (in category 'menu messages') -----
+ selectedLiteral
+ 	"Try to make a literal out of the current text selection"
+ 	| tokens |
+ 	tokens := Scanner new typedScanTokens: self selection string.
+ 	^tokens isEmpty ifFalse: [tokens first]!

Item was changed:
  ----- Method: TextEditor>>selectedSelector (in category 'menu messages') -----
  selectedSelector
  	"Try to make a selector out of the current text selection"
+ 	^self selection string findSelector!
- 	| tokens |
- 	tokens := Scanner new typedScanTokens: self selection string.
- 	^tokens isEmpty ifFalse: [tokens first]!



More information about the Squeak-dev mailing list