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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,9c86eb13dd395066 X-Google-Attributes: gid103376,public From: dewar@merv.cs.nyu.edu (Robert Dewar) Subject: Re: CRC in Ada? Date: 1997/03/24 Message-ID: #1/1 X-Deja-AN: 228158901 References: <1997Mar2.220652@nova.wright.edu> <3332CA3D.379F@bix.com> Organization: New York University Newsgroups: comp.lang.ada Date: 1997-03-24T00:00:00+00:00 List-Id: <> It is hard to know what Text_IO is intended for sometimes, but the page mark business means that in fact you have to work VERY hard to make Text_IO files compatible with interactive IO, or compatible with text editors, probably any file written by Text_IO can be read by an editor, but the opposite is not always true. Also, on a system like the Unisys 1100 operating system, the natural format for Text_IO files would be the normal source format (I forget what it is called, a while since I worked with it), but there are aspects to this format that make it incompatible with Text_IO, so it would not be surprising to find Text_IO using some other weird format not directly readable by editors. Sure on a system with no fancy IO, like Unix, you can easily enough make Text_IO consistent with editors, but in the case of systems with complex file structures, it is not a all clear that you can expect ayutomatic compatibilty bnetween text_IO and some arbitrary editors, indeed on such systems editorsd are not always compatible with one another (for examle, one might use a quite different file format for source files, and general ascii files).