Re: [fpc-devel] Fix CamelCase in unit and method names

2018-03-23 Thread Michael Van Canneyt
On Fri, 23 Mar 2018, Pierre Muller wrote: Le 23/03/2018 à 23:12, Michael Van Canneyt a écrit : On Fri, 23 Mar 2018, Sven Barth via fpc-devel wrote: R0b0t1 schrieb am Fr., 23. März 2018, 16:07: IMHO preferably not the unit names (as in 'unit XxX') - with case sensitive file names on

Re: [fpc-devel] Fix CamelCase in unit and method names

2018-03-23 Thread Pierre Muller
Le 23/03/2018 à 23:12, Michael Van Canneyt a écrit : > > > On Fri, 23 Mar 2018, Sven Barth via fpc-devel wrote: > >> R0b0t1 schrieb am Fr., 23. März 2018, 16:07: >> IMHO preferably not the unit names (as in 'unit XxX') - with case sensitive file names on Unix, this change might

Re: [fpc-devel] Fix CamelCase in unit and method names

2018-03-23 Thread Michael Van Canneyt
On Fri, 23 Mar 2018, Sven Barth via fpc-devel wrote: R0b0t1 schrieb am Fr., 23. März 2018, 16:07: IMHO preferably not the unit names (as in 'unit XxX') - with case sensitive file names on Unix, this change might increase time for searching the respective file (somewhat). Obviously, all fur

Re: [fpc-devel] Fix CamelCase in unit and method names

2018-03-23 Thread Sven Barth via fpc-devel
R0b0t1 schrieb am Fr., 23. März 2018, 16:07: > > > > IMHO preferably not the unit names (as in 'unit XxX') - with case > > sensitive file names on Unix, this change might increase time for > > searching the respective file (somewhat). Obviously, all further > > references of the unit (as in 'SysU

Re: [fpc-devel] Fix CamelCase in unit and method names

2018-03-23 Thread Michael Van Canneyt
On Thu, 22 Mar 2018, R0b0t1 wrote: On Thu, Mar 22, 2018 at 10:18 AM, Juha Manninen wrote: On Thu, Mar 22, 2018 at 3:15 PM, Denis Kozlov wrote: Please do... It has caused enough eye (OCD) stress over the years ;) +1 Yes, it has bothered also me a lot. I use code completion to get the unit

Re: [fpc-devel] Fix CamelCase in unit and method names

2018-03-23 Thread R0b0t1
On Thu, Mar 22, 2018 at 10:18 AM, Juha Manninen wrote: > On Thu, Mar 22, 2018 at 3:15 PM, Denis Kozlov wrote: >> Please do... It has caused enough eye (OCD) stress over the years ;) > > +1 > Yes, it has bothered also me a lot. I use code completion to get the > unit names correctly. Most of them

Re: [fpc-devel] Fix CamelCase in unit and method names

2018-03-23 Thread R0b0t1
On Thu, Mar 22, 2018 at 6:42 AM, Michael Van Canneyt wrote: > > > On Thu, 22 Mar 2018, Ondrej Pokorny wrote: > >> Hello, >> >> will a patch be applied that fixes CamelCase in unit and method names and >> other identifiers? >> >> Example: >> >> dateutils -> DateUtils >> sysutils -> SysUtils >> typi

Re: [fpc-devel] Fix CamelCase in unit and method names

2018-03-22 Thread Sven Barth via fpc-devel
Mark Morgan Lloyd schrieb am Do., 22. März 2018, 17:57: > On 22/03/18 15:30, Juha Manninen wrote: > > On Thu, Mar 22, 2018 at 3:15 PM, Denis Kozlov > wrote:> Please do... It has caused enough eye (OCD) stress over the years ;) > > +1Yes, it has bothered also me a lot. I use code completion to ge

Re: [fpc-devel] Fix CamelCase in unit and method names

2018-03-22 Thread Paul Michell
On 22/03/18 15:53, Anthony Walter wrote: Yes, I agree, both for unit names, but also for methods and arguments. The exceptions should be for code related that are imports or extensions of existing APIs, for example: cairo_create should remain the same glGenBuffersshould remain the same gtk_wi

Re: [fpc-devel] Fix CamelCase in unit and method names

2018-03-22 Thread Mark Morgan Lloyd
On 22/03/18 15:30, Juha Manninen wrote: On Thu, Mar 22, 2018 at 3:15 PM, Denis Kozlov wrote:> Please do... It has caused enough eye (OCD) stress over the years ;) +1Yes, it has bothered also me a lot. I use code completion to get theunit names correctly. Most of them are CamelCase but some are

Re: [fpc-devel] Fix CamelCase in unit and method names

2018-03-22 Thread Anthony Walter
Yes, I agree, both for unit names, but also for methods and arguments. The exceptions should be for code related that are imports or extensions of existing APIs, for example: cairo_create should remain the same glGenBuffers should remain the same gtk_window_new should remain the same dlopen should

Re: [fpc-devel] Fix CamelCase in unit and method names

2018-03-22 Thread Juha Manninen
On Thu, Mar 22, 2018 at 3:15 PM, Denis Kozlov wrote: > Please do... It has caused enough eye (OCD) stress over the years ;) +1 Yes, it has bothered also me a lot. I use code completion to get the unit names correctly. Most of them are CamelCase but some are lowercase. The result looks sloppy. May

Re: [fpc-devel] Fix CamelCase in unit and method names

2018-03-22 Thread Ondrej Pokorny
On 22.03.2018 12:42, Michael Van Canneyt wrote: Code completion will benefit from it, I suppose. Yes, my only motivation is code completion. I uploaded the patch here: https://bugs.freepascal.org/view.php?id=33481 Thanks Ondrej ___ fpc-devel mailli

Re: [fpc-devel] Fix CamelCase in unit and method names

2018-03-22 Thread Denis Kozlov
Please do... It has caused enough eye (OCD) stress over the years ;) Denis On 22/03/2018 11:32, Ondrej Pokorny wrote: Hello, will a patch be applied that fixes CamelCase in unit and method names and other identifiers? Example: dateutils -> DateUtils sysutils -> SysUtils typinfo -> TypInfo

Re: [fpc-devel] Fix CamelCase in unit and method names

2018-03-22 Thread Michael Van Canneyt
On Thu, 22 Mar 2018, Tomas Hajny wrote: On Thu, March 22, 2018 12:42, Michael Van Canneyt wrote: On Thu, 22 Mar 2018, Ondrej Pokorny wrote: Hi, will a patch be applied that fixes CamelCase in unit and method names and other identifiers? Example: dateutils -> DateUtils sysutils -> SysUt

Re: [fpc-devel] Fix CamelCase in unit and method names

2018-03-22 Thread Tomas Hajny
On Thu, March 22, 2018 12:42, Michael Van Canneyt wrote: > On Thu, 22 Mar 2018, Ondrej Pokorny wrote: Hi, >> will a patch be applied that fixes CamelCase in unit and method names >> and other identifiers? >> >> Example: >> >> dateutils -> DateUtils >> sysutils -> SysUtils >> typinfo -> TypInfo >

Re: [fpc-devel] Fix CamelCase in unit and method names

2018-03-22 Thread Michael Van Canneyt
On Thu, 22 Mar 2018, Ondrej Pokorny wrote: Hello, will a patch be applied that fixes CamelCase in unit and method names and other identifiers? Example: dateutils -> DateUtils sysutils -> SysUtils typinfo -> TypInfo contnrs -> Contnrs strutils -> StrUtils EnterCriticalsection -> EnterCriti

[fpc-devel] Fix CamelCase in unit and method names

2018-03-22 Thread Ondrej Pokorny
Hello, will a patch be applied that fixes CamelCase in unit and method names and other identifiers? Example: dateutils -> DateUtils sysutils -> SysUtils typinfo -> TypInfo contnrs -> Contnrs strutils -> StrUtils EnterCriticalsection -> EnterCriticalSection DoneCriticalsection -> DoneCriticalS