Re: [fpc-pascal] Codetools and C-style constructs

2012-12-19 Thread Sven Barth
Am 18.12.2012 23:56, schrieb Mattias Gaertner: On Tue, 18 Dec 2012 21:13:22 + Howard Page-Clark wrote: Looking through some of the codetools sources makes me wonder if the codetools overlooks some C-style FPC operators. KeywordFuncLists.pas, for instance, seems not to know about >>, <<, +

Re: [fpc-pascal] Codetools and C-style constructs

2012-12-18 Thread Howard Page-Clark
On 18/12/12 10:56, Mattias Gaertner wrote: Looking through some of the codetools sources makes me wonder if the codetools overlooks some C-style FPC operators. KeywordFuncLists.pas, for instance, seems not to know about >>, <<, +=, -=, *=, /=. I added the << and >>. The others are assignment

Re: [fpc-pascal] Codetools and C-style constructs

2012-12-18 Thread Mattias Gaertner
On Tue, 18 Dec 2012 21:13:22 + Howard Page-Clark wrote: > Looking through some of the codetools sources makes me wonder if the > codetools overlooks some C-style FPC operators. > > KeywordFuncLists.pas, for instance, seems not to know about >>, <<, > +=, -=, *=, /=. I added the << and >>.

[fpc-pascal] Codetools and C-style constructs

2012-12-18 Thread Howard Page-Clark
Looking through some of the codetools sources makes me wonder if the codetools overlooks some C-style FPC operators. KeywordFuncLists.pas, for instance, seems not to know about >>, <<, +=, -=, *=, /=. Or are these operators are catered for elsewhere in the codetools? Howard ___