Re: [Pharo-dev] New line on command line

2017-08-15 Thread Rajula Vineet
Hey Guille, I think I found the fix. But I would like to run by you first. I want to get a review before making a PR. In the method nextPut: in ZnCrProtableWriteStream, when a new line character is sent using 'OSPlatform current lineEnding', there isn`t any statement which satisfies in this

Re: [Pharo-dev] New line on command line

2017-08-15 Thread Rajula Vineet
Oh ok sure. I will try my best. :) Rajula -- View this message in context: http://forum.world.st/New-line-on-command-line-tp4960327p4961307.html Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.

Re: [Pharo-dev] New line on command line

2017-08-13 Thread Guillermo Polito
Rajula, you can debug the code in graphical mode also. Would you mind investigating the bug and proposing a fix? It should not be difficult :) Guille On Sat, Aug 12, 2017 at 3:39 PM, Rajula Vineet wrote: > > Hi Rajula > > Hey > > > > On Sat, Aug 12, 2017 at

Re: [Pharo-dev] New line on command line

2017-08-12 Thread Rajula Vineet
Hi Rajula Hey On Sat, Aug 12, 2017 at 12:56 AM, Rajula Vineet [hidden email] wrote: Hey, I have been trying to print on the command line as a part of my handler implementation. I have been using `nextPutAll: aString;lf.` Apparently, lf does not seem to work. I tried cr too. I am using

Re: [Pharo-dev] New line on command line

2017-08-12 Thread Guillermo Polito
Hi Rajula On Sat, Aug 12, 2017 at 12:56 AM, Rajula Vineet wrote: > Hey, > > I have been trying to print on the command line as a part of my handler > implementation. I have been using `nextPutAll: aString;lf.` Apparently, > 'lf' > does not seem to work. I tried 'cr' too.

[Pharo-dev] New line on command line

2017-08-11 Thread Rajula Vineet
Hey, I have been trying to print on the command line as a part of my handler implementation. I have been using `nextPutAll: aString;lf.` Apparently, 'lf' does not seem to work. I tried 'cr' too. I am using the latest 7.0 Pharo-vm and pharo image. I tried 'OSPlatform current lineEnding' as