Re: [xHarbour-developers] Upper() and codepage.

2009-03-13 Thread Ron Pinkas
, many thanks for your assistance. Ron -- From: Przemyslaw Czerpak dru...@acn.waw.pl Sent: Thursday, March 12, 2009 11:28 AM To: Xharbour-Developers List xharbour-developers@lists.sourceforge.net Subject: Re: [xHarbour-developers] Upper() and codepage

Re: [xHarbour-developers] Upper() and codepage.

2009-03-11 Thread Phil Krylov
Hi, On Wed, Mar 11, 2009 at 7:00 AM, Ron Pinkas ron.pin...@xharbour.com wrote: In my test, Clipper did NOT optimize at all, Upper()/Lower()/Asc()/Chr(). Here is my simple test: PROCEDURE Main()  LOCAL c1 := Upper( Hello ), c2 := Lower( World )  LOCAL c3 := Chr( 65 )  LOCAL n1 := Asc( A )

Re: [xHarbour-developers] Upper() and codepage.

2009-03-11 Thread Phil Krylov
Hi, On Wed, Mar 11, 2009 at 7:00 AM, Ron Pinkas ron.pin...@xharbour.com wrote: In my test, Clipper did NOT optimize at all, Upper()/Lower()/Asc()/Chr(). Here is my simple test: PROCEDURE Main()  LOCAL c1 := Upper( Hello ), c2 := Lower( World )  LOCAL c3 := Chr( 65 )  LOCAL n1 := Asc( A )

Re: [xHarbour-developers] Upper() and codepage.

2009-03-11 Thread Ron Pinkas
Phil, In my test, Clipper did NOT optimize at all, Upper()/Lower()/Asc()/Chr(). Here is my simple test: PROCEDURE Main() LOCAL c1 := Upper( Hello ), c2 := Lower( World ) LOCAL c3 := Chr( 65 ) LOCAL n1 := Asc( A ) add here: c3 := Upper(hello2 + Chr(97)) ? c1, c2, c3, n1 RETURN By

Re: [xHarbour-developers] Upper() and codepage.

2009-03-11 Thread bhays
Message- From: Ron Pinkas [mailto:ron.pin...@xharbour.com] Sent: Wednesday, March 11, 2009 6:49 AM To: Patrick Mast, xHarbour.; xharbour developer list Subject: Re: [xHarbour-developers] Upper() and codepage. Patrick, Brian, IMO, such features should only be enabled in a DEBUG build

Re: [xHarbour-developers] Upper() and codepage.

2009-03-10 Thread Ron Pinkas
xharbour-developers@lists.sourceforge.net Subject: Re: [xHarbour-developers] Upper() and codepage. I purpose to change optimizations that changes Upper, Lower optimized with toupper and tolower. and change optimization for windows platforms, for: LPTSTR CharUpper( LPTSTR /lpsz/ ); LPTSTR

Re: [xHarbour-developers] Upper() and codepage.

2009-03-10 Thread Luiz Rafael Culik Guimaraes
Ron in my opinion we should release now, but i also suggest to some one talk to Budjanto about updating gtwvw or even phil Regards Luiz -- ___ xHarbour-developers mailing

Re: [xHarbour-developers] Upper() and codepage.

2009-03-10 Thread Luis Krause Mantilla
Ron Anyone aware of any SHOW STOPPER, or would like to post any other commit? __TracePrgCalls( .t. ) has stopped working For us it has been helpful finding problems. Regards, -- Luis Krause Mantilla lkrausem at shaw dot ca luis_krause at hotmail dot com May the Source be with GNU

Re: [xHarbour-developers] Upper() and codepage.

2009-03-10 Thread Luis Krause Mantilla
ron.pin...@xharbour.com Cc: Miguel Angel Marchuet miguelan...@marchuet.net; modals...@yahoo.com.br; Xharbour-Developers List xharbour-developers@lists.sourceforge.net Subject: Re: [xHarbour-developers] Upper() and codepage. Ron Anyone aware of any SHOW STOPPER, or would like

Re: [xHarbour-developers] Upper() and codepage.

2009-03-10 Thread Miguel Angel Marchuet
...@xharbour.com Cc: Miguel Angel Marchuet miguelan...@marchuet.net; modals...@yahoo.com.br; Xharbour-Developers List xharbour-developers@lists.sourceforge.net Subject: Re: [xHarbour-developers] Upper() and codepage. Ron Anyone aware of any SHOW STOPPER, or would like to post

Re: [xHarbour-developers] Upper() and codepage.

2009-03-10 Thread Miguel Angel Marchuet
For me we are now prepared to release, we are enough stable. I only has one bad notice, rddads doesn't works, almost I can use anymore at ourxdbu, for example. any body has some news about it ? I hope to release to finish work at NUL item flag support and ansi/oem/utf8/wide/... items support

Re: [xHarbour-developers] Upper() and codepage.

2009-03-10 Thread Luis Krause Mantilla
Miguel: Can you elaborate on the rddads problem? Here we only use ADS and works just fine. Miguel Angel Marchuet wrote: For me we are now prepared to release, we are enough stable. I only has one bad notice, rddads doesn't works, almost I can use anymore at ourxdbu, for example. any body

Re: [xHarbour-developers] Upper() and codepage.

2009-03-10 Thread Phil Krylov
Hi, On Tue, Mar 10, 2009 at 7:04 PM, Ron Pinkas ron.pin...@xharbour.com wrote: Hi All, I just checked Clipper PCODE, and it seems we were wrong. Clipper does NOT optimize Upper(), NOR Chr(), I wonder how/why we concluded they are optimized - anyone remember? At the absence of any

[xHarbour-developers] Upper() and codepage.

2009-03-03 Thread Eduardo Fernandes
To all, There is any objection to disable upper() on include\hbexprb.c to activate codepage support on source\rtl\strcase.c ? regards, Eduardo Veja quais são os assuntos do momento no Yahoo! +Buscados http://br.maisbuscados.yahoo.com

Re: [xHarbour-developers] Upper() and codepage.

2009-03-03 Thread Miguel Angel Marchuet
I purpose to change optimizations that changes Upper, Lower optimized with toupper and tolower. and change optimization for windows platforms, for: LPTSTR CharUpper( LPTSTR /lpsz/ ); LPTSTR CharLower( LPTSTR /lpsz/ ); That respects system code page And add compiler flag to deactivate