From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.36.121.142 with SMTP id z136mr2008451itc.36.1507657096113; Tue, 10 Oct 2017 10:38:16 -0700 (PDT) X-Received: by 10.157.0.7 with SMTP id 7mr25650ota.14.1507657096055; Tue, 10 Oct 2017 10:38:16 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!feeder.eternal-september.org!news.linkpendium.com!news.linkpendium.com!news.snarked.org!border2.nntp.dca1.giganews.com!nntp.giganews.com!l196no1710476itl.0!news-out.google.com!u132ni3085ita.0!nntp.google.com!k70no1717169itk.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Tue, 10 Oct 2017 10:38:15 -0700 (PDT) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=2003:c7:83ca:5c33:bd77:4df8:57d1:d8ca; posting-account=rmHyLAoAAADSQmMWJF0a_815Fdd96RDf NNTP-Posting-Host: 2003:c7:83ca:5c33:bd77:4df8:57d1:d8ca References: User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <0e07e8da-faf0-4124-adbf-c654d6193089@googlegroups.com> Subject: Re: Idiomatic formatting for empty package From: AdaMagica Injection-Date: Tue, 10 Oct 2017 17:38:16 +0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Xref: news.eternal-september.org comp.lang.ada:48418 Date: 2017-10-10T10:38:15-07:00 List-Id: Am Dienstag, 10. Oktober 2017 16:34:51 UTC+2 schrieb Jeffrey R. Carter: > On 10/10/2017 12:21 PM, AdaMagica wrote: > > But those renamings don't clutter the user's namespace since the names = may be > > used for user-created packages: RM J.1(10), AARM A.2(4.a). >=20 > Yes, but I'd never use those names, since they'd confuse the reader, who = would > reasonably assume they were the renamings. So they're still effectively o= ff limits. Ha! This facility once redounded to my advantage when rehosting airborne Ad= a 83 code for a full scale flight simulator in Ada 95. Package Calendar had= to be replaced by a simulated time calendar. Rather than searching the mil= lions of lines of code and exchanging Calender by Sim_Calendar, I only had = to declare package Calendar renames Sim_Calendar; (I know I was lucky because the airborne code used Ada 83 and I could use n= ewer Ada generations.)