The Trunk: System-ul.1034.mcz

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

The Trunk: System-ul.1034.mcz

commits-2
Levente Uzonyi uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-ul.1034.mcz

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

Name: System-ul.1034
Author: ul
Time: 13 June 2018, 1:24:43.197886 pm
UUID: b5a05a72-7c75-4bdb-95bc-b7d1b31eb83b
Ancestors: System-nice.1033

- added  Utilities class >> #useAuthorName:during:, which works just like #useAuthorInitials:during: but with AuthorName instead of AuthorInitials

=============== Diff against System-nice.1033 ===============

Item was added:
+ ----- Method: Utilities class>>useAuthorName:during: (in category 'identification') -----
+ useAuthorName: temporaryAuthorName during: aBlock
+
+ | originalAuthorName |
+ originalAuthorName := AuthorName.
+ [
+ AuthorName := temporaryAuthorName.
+ aBlock value ]
+ ensure: [ AuthorName := originalAuthorName ]
+ !