Re: [fpc-pascal] unit name with dots

2006-05-27 Thread mariano podesta
None of the FPC developers currently has the time nor wish to supportany of the .NET enhancements, and that includes the dot in the unit names.despite it was originally intended for .net, i don't see it as a .net specific enhancement, but it's ok. i appreciate your answer. Michael.marianop

Re: [fpc-pascal] unit name with dots

2006-05-27 Thread mariano podesta
We don't support every bug/strange thing delphi supports.ok, i understand your point. in my very humble opinion it was an interesting idea.If you want to insult people you might do it somewhere else. Thank you. it was a joke. not aiming to offend anybody.thanks,marianop

Re: [fpc-pascal] unit name with dots

2006-05-26 Thread Michael Van Canneyt
On Thu, 25 May 2006, mariano podesta wrote: > > > > > > This looks to me like a delphi bug. > > > a bug? are you serious? > > A unit must be a valid pascal > > > > identifier. > > > fpc just support valid standard pascal? this is not what i heard. > delphi7 supports it since 2002. not a .net rel

Re: [fpc-pascal] unit name with dots

2006-05-26 Thread Florian Klaempfl
mariano podesta wrote: > > > This looks to me like a delphi bug. > > > a bug? are you serious? Of course, asdf.asdf is no valid pascal identifier. > > A unit must be a valid pascal > > > identifier. > > > fpc just support valid standard pascal? this is not what i heard. > delphi

Re: [fpc-pascal] unit name with dots

2006-05-26 Thread mariano podesta
> > This looks to me like a delphi bug.a bug? are you serious? A unit must be a valid pascal> > identifier. fpc just support valid standard pascal? this is not what i heard. delphi7 supports it since 2002. not a .net release. Or is there any use in supporting this?ofcourse there is a use.you see

Re: [fpc-pascal] unit name with dots

2006-05-25 Thread Marco van de Voort
> On 5/25/06, Florian Klaempfl <[EMAIL PROTECTED]> wrote: > > mariano podesta wrote: > > > hi, > > > does fpc support unit names with more than one dot or is planned? > > > > > > in delphi 7 you can compile this: > > > > This looks to me like a delphi bug. A unit must be a valid pascal > > identifi

Re: [fpc-pascal] unit name with dots

2006-05-25 Thread Graeme Geldenhuys
On 5/25/06, Florian Klaempfl <[EMAIL PROTECTED]> wrote: mariano podesta wrote: > hi, > does fpc support unit names with more than one dot or is planned? > > in delphi 7 you can compile this: This looks to me like a delphi bug. A unit must be a valid pascal identifier. Or is there any use in supp

Re: [fpc-pascal] unit name with dots

2006-05-25 Thread Micha Nelissen
On Wed, 24 May 2006 10:42:30 -0300 "mariano podesta" <[EMAIL PROTECTED]> wrote: > hi, > does fpc support unit names with more than one dot or is planned? > > begin > test.sec.doit; > end. Don't you think this is very confusing ? Micha ___ fpc-pascal

Re: [fpc-pascal] unit name with dots

2006-05-25 Thread Florian Klaempfl
mariano podesta wrote: > hi, > does fpc support unit names with more than one dot or is planned? > > in delphi 7 you can compile this: This looks to me like a delphi bug. A unit must be a valid pascal identifier. Or is there any use in supporting this? > > // unit main.dpr > program main; > >

[fpc-pascal] unit name with dots

2006-05-25 Thread mariano podesta
hi,does fpc support unit names with more than one dot or is planned?in delphi 7 you can compile this:// unit main.dprprogram main;uses  test.sec;begin  test.sec.doit;end. // unit test.sec.pasunit test.sec;interfaceprocedure doit;implementationprocedure doit;begin  writeln('anda');end;end.thanks,mar