Re: [Harbour] Problam with lates changes

2009-06-26 Thread Viktor Szakáts
Yes, thanks. Now I know it's an hbct function. It's a typo in one of recent patches. I'll commit a fix ASAP. Brgds, Viktor On 2009.06.26., at 21:28, AbeB wrote: Viktor, i posted a reply but i'm not sure it went thru. (i myself didn't get it in an email) i did a clean install

Re: [Harbour] Problam with lates changes

2009-06-26 Thread Massimo Belgrano
i can read your mail 2009/6/26 AbeB : > > Viktor, i posted a reply but i'm not sure it went thru. (i myself didn't get > it in an email) > > i did a clean install > > test.prg > proc main > s := space(10) > justright( @s) > ? s > //returns garbage characters is s. > --

Re: [Harbour] Problam with lates changes

2009-06-26 Thread AbeB
Viktor, i posted a reply but i'm not sure it went thru. (i myself didn't get it in an email) i did a clean install test.prg proc main s := space(10) justright( @s) ? s //returns garbage characters is s. --- hbmk2 test -lhbct -- just tested i

Re: [Harbour] Problam with lates changes

2009-06-26 Thread AbeB
test.prg proc main s := space(10) justright( @s) ? s //returns garbage characters is s. --- hbmk2 test -lhbct -- just tested it again with Harbour 2.0.0beta2 (Rev. 11544) Copyright (c) 1999-2009, http://www.harbour-project.org/ Viktor Szakáts wrote: > > Hi Abe,

Re: [Harbour] Problam with lates changes

2009-06-26 Thread Viktor Szakáts
Hi Abe, I can't replicate any problem given this code. Can you post a self contained example with a description of the problem? I'd also suggest to you and everyone else to make new checkout and clean build before reporting a problem after recent excessive changes. Brgds, Viktor On 2009.06.26

[Harbour] Problam with lates changes

2009-06-26 Thread AbeB
try passing by reference. sTest := space(10) justright(@sTest) ? sTest thanks. Abe -- View this message in context: http://n2.nabble.com/Problam-with-lates-changes-tp3162355p3162355.html Sent from the harbour-devel mailing list archive at Nabble.com. __