Re: Spell checking identifiers

Thomas Koenig <tkoenig@netcologne.de>
Fri, 10 Jul 2020 07:12:27 -0000 (UTC)

          From comp.compilers

Related articles
[5 earlier articles]
Re: Spell checking identifiers tkoenig@netcologne.de (Thomas Koenig) (2020-06-24)
Re: Spell checking identifiers gautier_niouzes@hotmail.com (2020-06-24)
Re: Spell checking identifiers gah4@u.washington.edu (2020-06-24)
Re: Spell checking identifiers johann@myrkraverk.invalid (Johann 'Myrkraverk' Oskarsson) (2020-06-25)
Re: Spell checking identifiers johann@myrkraverk.invalid (Johann 'Myrkraverk' Oskarsson) (2020-06-25)
Re: Spell checking identifiers acolvin@efunct.com (mac) (2020-07-09)
Re: Spell checking identifiers tkoenig@netcologne.de (Thomas Koenig) (2020-07-10)
Re: Spell checking identifiers gah4@u.washington.edu (2020-07-10)
| List of all articles for this month |

From: Thomas Koenig <tkoenig@netcologne.de>
Newsgroups: comp.compilers
Date: Fri, 10 Jul 2020 07:12:27 -0000 (UTC)
Organization: news.netcologne.de
References: 20-06-010 20-06-013 20-06-017 20-07-002
Injection-Info: gal.iecc.com; posting-host="news.iecc.com:2001:470:1f07:1126:0:676f:7373:6970"; logging-data="59714"; mail-complaints-to="abuse@iecc.com"
Keywords: lex, history, C, Fortran
Posted-Date: 10 Jul 2020 11:23:35 EDT

mac <acolvin@efunct.com> schrieb:
>> You might not want J1 and J_one in the same program.
>
> Similarly, some ancient compiler (Euclid?) had case-insensitive lookup, but
> required the same capitalization everywhere


Fortran has a a bit of a similar issue with its C interoperability
feature.


Entities with C binding have global identifiers in Fortran. Fortran
is a case-insensitive laguage, so FooBar and foobar look the same
to Fortran, and you can not have a C binding to both (but either
one would work).


In practice, this should not be a big problem.


Post a followup to this message

Return to the comp.compilers page.
Search the comp.compilers archives again.