Tobias Pape uploaded a new version of 51Deprecated to project The Trunk:
http://source.squeak.org/trunk/51Deprecated-topa.2.mcz==================== Summary ====================
Name: 51Deprecated-topa.2
Author: topa
Time: 8 October 2015, 8:24:57.392 pm
UUID: 39a6dda9-4053-4241-81d8-0b49f0791385
Ancestors: 51Deprecated-topa.1
Deprecate #nextPutKeyword:withArg: as alternate syntax is unsupported since at least 4.0
=============== Diff against 51Deprecated-topa.1 ===============
Item was added:
+ ----- Method: WriteStream>>nextPutKeyword:withArg: (in category '*51Deprecated-character writing') -----
+ nextPutKeyword: keyword withArg: argValue
+ "Emit a keyword/value pair in the alternate syntax"
+
+ self nextPutAll: (keyword copyWithout: $:);
+ nextPut: $(;
+ store: argValue;
+ nextPut: $)!