Re: [xHarbour-developers] Spaces around -> operator

2012-10-02 Thread Enrico Maria Giordano
-Messaggio Originale- Da: "Przemyslaw Czerpak" A: "Enrico Maria Giordano" ; "Xharbour-Developers List" Data invio: martedì 2 ottobre 2012 0.19 Oggetto: Re: [xHarbour-developers] Spaces around -> operator > > WIth this new sample > >

Re: [xHarbour-developers] Spaces around -> operator

2012-10-01 Thread Przemyslaw Czerpak
On Mon, 01 Oct 2012, Enrico Maria Giordano wrote: Hi Enrico, > >There is no such limitation in Harbour, xHarbour and in Clipper. > Great! I'm happy to ear that! :-) > >So all what you need is investing few minutes and learn how PP > >in Clipper and [x]Harbour works and then use correct syntax. >

Re: [xHarbour-developers] Spaces around -> operator

2012-10-01 Thread Enrico Maria Giordano
-Messaggio Originale- Da: "Przemyslaw Czerpak" A: "Enrico Maria Giordano" ; "Xharbour-Developers List" Data invio: lunedì 1 ottobre 2012 18.04 Oggetto: Re: [xHarbour-developers] Spaces around -> operator > There is no such limitation in Harbour,

Re: [xHarbour-developers] Spaces around -> operator

2012-10-01 Thread Enrico Maria Giordano
-Messaggio Originale- Da: "Andi Jahja" A: "xHarbour Developers Mailing List" Data invio: lunedì 1 ottobre 2012 16.18 Oggetto: Re: [xHarbour-developers] Spaces around -> operator > Have you tested it with Clipper? > If it is compilable with Clipper the

Re: [xHarbour-developers] Spaces around -> operator

2012-10-01 Thread Andi Jahja
Have you tested it with Clipper? If it is compilable with Clipper then it should be corrected. Andi On Mon, 1 Oct 2012 15:18:03 +0200 "Enrico Maria Giordano" wrote: > Dear friends, the following sample looks like a xHarbour bug to me: > > Procedure Main() >MEMVAR->Doug := "right" >MEMV

[xHarbour-developers] Spaces around -> operator

2012-10-01 Thread Enrico Maria Giordano
Dear friends, the following sample looks like a xHarbour bug to me: Procedure Main() MEMVAR->Doug := "right" MEMVAR->Enrico := "wrong" SET PRINTER TO &(MEMVAR->Doug) SET PRINTER TO &(MEMVAR -> Enrico) //Syntax error Return Why the spaces around -> can't be accepted by the compiler? I