Andreas Raab uploaded a new version of ST80 to project The Trunk:
http://source.squeak.org/trunk/ST80-ar.56.mcz==================== Summary ====================
Name: ST80-ar.56
Author: ar
Time: 6 October 2009, 10:37:16 am
UUID: 9ca6b709-2e92-3c41-b858-52a2c95748f1
Ancestors: ST80-ar.55
Fix missing return in StringHolder utility method.
=============== Diff against ST80-ar.55 ===============
Item was changed:
----- Method: StringHolder class>>codePaneMenu:shifted: (in category 'yellow button menu') -----
codePaneMenu: aMenu shifted: shifted
"Utility method for the 'standard' codePane menu"
aMenu addList: (shifted
ifTrue:[self shiftedYellowButtonMenuItems]
+ ifFalse:[self yellowButtonMenuItems]).
+ ^aMenu!
- ifFalse:[self yellowButtonMenuItems])!