From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.5-pre1 (2020-06-20) on ip-172-31-74-118.ec2.internal X-Spam-Level: X-Spam-Status: No, score=-0.5 required=3.0 tests=BAYES_05,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.5-pre1 X-Received: by 2002:ac8:53c2:: with SMTP id c2mr4139905qtq.166.1615992440646; Wed, 17 Mar 2021 07:47:20 -0700 (PDT) X-Received: by 2002:a25:9303:: with SMTP id f3mr5169830ybo.165.1615992440526; Wed, 17 Mar 2021 07:47:20 -0700 (PDT) Path: eternal-september.org!reader02.eternal-september.org!news.mixmin.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Wed, 17 Mar 2021 07:47:20 -0700 (PDT) In-Reply-To: Injection-Info: google-groups.googlegroups.com; posting-host=94.31.102.170; posting-account=rmHyLAoAAADSQmMWJF0a_815Fdd96RDf NNTP-Posting-Host: 94.31.102.170 References: <6aad7864-7b88-4e73-b4fe-f4cd30673b28n@googlegroups.com> <3315a5c5-7a06-4d9d-a808-9fc5b45dab82n@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <5a31fadb-95e2-4fdb-abd7-855ba9ff0e2cn@googlegroups.com> Subject: Re: Attempting to create file i task From: AdaMagica Injection-Date: Wed, 17 Mar 2021 14:47:20 +0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Xref: reader02.eternal-september.org comp.lang.ada:61588 List-Id: reinert schrieb am Mittwoch, 17. M=C3=A4rz 2021 um 15:34:13 UTC+1: > onsdag 17. mars 2021 kl. 15:18:11 UTC+1 skrev AdaMagica:=20 > > Create with mode Append=20 >=20 > "Mode =3D> Append_File" only makes the files to "mix".=20 ?? Jeffrey: RM A.10.2(2) For the procedures Create and Open: After a file with mode Out= _File or Append_File is opened, the page length and line length are unbound= ed (both have the conventional value zero). After a file (of any mode) is o= pened, the current column, current line, and current page numbers are set t= o one. If the mode is Append_File, it is implementation defined whether a p= age terminator will separate preexisting text in the file from the new text= to be written. Doesn't sound like the contents are overwritten. The counting starts with 1= , OK, but the old contents should be presevered for Append. Only the presen= ce of a page terminator is implementation defined.