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 autolearn=unavailable autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!feeder.eternal-september.org!.POSTED!not-for-mail From: G. B. Newsgroups: comp.lang.ada Subject: Re: some trivial questions? Date: Fri, 10 Nov 2017 20:30:04 -0000 (UTC) Organization: A noiseless patient Spider Message-ID: References: <6a5368c5-f015-4dcb-9291-e77b40fa1bf1@googlegroups.com> <39330489-ec8b-481f-bcff-a5b7d1a2d8e3@googlegroups.com> <7c68eace-8a03-4bfc-806d-aa78a453f97f@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Injection-Date: Fri, 10 Nov 2017 20:30:04 -0000 (UTC) Injection-Info: reader02.eternal-september.org; posting-host="0b28c1e3f3ab5a9a43a0883f690a803f"; logging-data="28386"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+tKUz7zcEQ6YET3jZla4WHKvdA+300Zdo=" User-Agent: NewsTap/5.2.6 (iPhone/iPod Touch) Cancel-Lock: sha1:UQbKBzN1KH+OpQbpmEPNAeMVXBU= sha1:hzCEQvTsFF4F7YgtcejXy3IA0jE= Xref: feeder.eternal-september.org comp.lang.ada:48815 Date: 2017-11-10T20:30:04+00:00 List-Id: J-P. Rosen wrote: > Le 09/11/2017 à 21:05, Dmitry A. Kazakov a écrit : >> Also why should >> >>    with A.B.C.D; >> >> imply >> >>    with A, A.B, A.B.C; > Because if you say you import a branch, then you import a full branch. > > If you want to import a single (child) unit, say so: > with A.B.C.D; > package D_Alone renames A.B.C.D; > > with D_Alone; > ... > Is this an Ada jewel already? Or a section of Ada docs at Stackoverflow?