Deutsch English Français Italiano |
<v7e9cl$33dn3$1@dont-email.me> View for Bookmarking (what is this?) Look up another Usenet article |
Path: ...!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail From: =?UTF-8?Q?Arne_Vajh=C3=B8j?= <arne@vajhoej.dk> Newsgroups: comp.os.vms Subject: Re: Bliss Date: Fri, 19 Jul 2024 13:56:37 -0400 Organization: A noiseless patient Spider Lines: 43 Message-ID: <v7e9cl$33dn3$1@dont-email.me> References: <v6r3od$30fgj$2@dont-email.me> <v6r7ev$312bs$1@dont-email.me> <v6raga$31ano$2@dont-email.me> <v6rfb3$31ano$6@dont-email.me> <v6sj58$38thk$1@dont-email.me> <v6srvb$3dvs2$1@dont-email.me> <v6stoc$3e8kc$1@dont-email.me> <v6t6tk$3fnd2$1@dont-email.me> <v6uogo$3o567$2@dont-email.me> <v7a35i$28ect$1@dont-email.me> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Injection-Date: Fri, 19 Jul 2024 19:56:38 +0200 (CEST) Injection-Info: dont-email.me; posting-host="629417c971a03ad1f6f0b1dd417c4e4e"; logging-data="3258083"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19Oe8QFlrWdLeeQSE6XkvUZmM+1HGo7QmQ=" User-Agent: Mozilla Thunderbird Cancel-Lock: sha1:g3fnuFoCEqBooBhq9x90L0gtXq0= Content-Language: en-US In-Reply-To: <v7a35i$28ect$1@dont-email.me> Bytes: 3055 On 7/17/2024 11:45 PM, Lawrence D'Oliveiro wrote: > On Sat, 13 Jul 2024 16:36:39 -0400, Hunter Goatley wrote: >> On 7/13/2024 2:30 AM, Lawrence D'Oliveiro wrote: >>> Slightly annoying that global names must be uppercased. >> >> Yeah. > > Tried this patch, and my compiler build is now case-sensitive. Builtin > and reserved names must still be uppercased, but your own symbols > (particularly references to names defined in C code) can be > lowercased: > > diff -u lib/frontend/scanner.c{-orig,} > --- lib/frontend/scanner.c-orig 2024-07-13 10:52:16.426465872 +1200 > +++ lib/frontend/scanner.c 2024-07-18 15:39:51.026148083 +1200 > @@ -75,8 +75,8 @@ > '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 0, 0, 0, 0, 0, 0, > 0, 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', > 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 0, 0, 0, 0, '_', > - 0, 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', > - 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 0, 0, 0, 0, 0, > + 0, 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', > + 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 0, 0, 0, 0, 0, > 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, > 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, > 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, I think that is a good change. Uppercasing makes sense on VMS - that is traditional VMS behavior. Compile with /NAME=AS_IS, link with option case_sensitive=YES etc. are a PITA. But this compiler is on Linux and I find it difficult to see any case where uppercasing makes sense. Matt should include it. Possible as an option, but please on by default. Arne