Re: [fpc-pascal] IsValidIdent() and identifiers escaped with

2017-02-05 Thread Michael Van Canneyt
On Sun, 5 Feb 2017, Jürgen Hestermann wrote: Am 2017-02-05 um 20:26 schrieb Sven Barth: > Is that a valid identifier? > Here > http://wiki.lazarus.freepascal.org/Identifiers > it says: > Rules for identifiers: > Must begin with a letter from the English alphabet or an underscore (_). > Can

Re: [fpc-pascal] IsValidIdent() and identifiers escaped with

2017-02-05 Thread Jürgen Hestermann
Am 2017-02-05 um 20:26 schrieb Sven Barth: > Is that a valid identifier? > Here > http://wiki.lazarus.freepascal.org/Identifiers > it says: > Rules for identifiers: > Must begin with a letter from the English alphabet or an underscore (_). > Can be followed by alphanumeric characters

Re: [fpc-pascal] IsValidIdent() and identifiers escaped with

2017-02-05 Thread Sven Barth
Am 05.02.2017 15:53 schrieb "Jürgen Hestermann" : > > > > Am 2017-02-05 um 15:24 schrieb Howard Page-Clark: >> >> var >> : boolean; > > > Is that a valid identifier? > Here > http://wiki.lazarus.freepascal.org/Identifiers > it says: > > Rules for identifiers: > > Must

Re: [fpc-pascal] IsValidIdent() and identifiers escaped with

2017-02-05 Thread Mattias Gaertner
On Sun, 5 Feb 2017 14:24:46 + Howard Page-Clark wrote: > Consider this program, which returns False: > > program Project1; > > uses sysutils; > > var >: boolean; > > begin >:=IsValidIdent(''); >WriteLn('IsValidIdent() evaluates to ', ); > end. > >

Re: [fpc-pascal] IsValidIdent() and identifiers escaped with

2017-02-05 Thread Jürgen Hestermann
Am 2017-02-05 um 15:24 schrieb Howard Page-Clark: var : boolean; Is that a valid identifier? Here http://wiki.lazarus.freepascal.org/Identifiers it says: Rules for identifiers: * Must begin with a letter from the English alphabet or an underscore (_). * Can be followed by alphanumeric