http://code.google.com/p/pharo/issues/detail?id=4272
Stef On May 25, 2011, at 11:50 AM, Gary Chambers wrote: > Aside from an issue I've encountered with Windows VM answering an empty > string for the first command line parameter, rather than nil. > > Workaround : > > CommandLine class>>commandLineInput > "self commandLineInput" > > | str index args | > args := OrderedCollection new. > str := Smalltalk getSystemAttribute: (index := 2). > [ str isNil or: [ str isEmpty ] ] whileFalse: > [ args add: str. > str := Smalltalk getSystemAttribute: (index := index + 1) ]. > ^ args. > > (Sorry, can't login to create an issue at present...) > > Regards, Gary > ----- Original Message ----- > From: Mariano Martinez Peck > To: [email protected] > Sent: Wednesday, May 25, 2011 10:33 AM > Subject: Re: [Pharo-project] Do we freeze 1.3? > > +1 > > On Wed, May 25, 2011 at 11:29 AM, Marcus Denker <[email protected]> > wrote: > Hello, > > 1.3 seems to stabilize... > > http://code.google.com/p/pharo/issues/list?can=2&q=milestone=1.3 > > just 12 issues left. > > We could freeze soon. > > > -- > Marcus Denker -- http://www.marcusdenker.de > INRIA Lille -- Nord Europe. Team RMoD. > > > > > > -- > Mariano > http://marianopeck.wordpress.com >
