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,47bd5b7b3b898723,start X-Google-Attributes: gid103376,public From: dewar@cs.nyu.edu (Robert Dewar) Subject: Re: Form feed comment for pragma Page Date: 1996/06/03 Message-ID: #1/1 X-Deja-AN: 158351237 references: <4p04vi$3ui$1@mhafn.production.compuserve.com> organization: Courant Institute of Mathematical Sciences newsgroups: comp.lang.ada Date: 1996-06-03T00:00:00+00:00 List-Id: Rex said "Compilers issue informationals about either: 1) Comments after pragma Page do not have to be printed in the source code. 2) The form feed character isn't in the allowed set of characters for Ada source code. It appears that problem number 1 should go away in Ada 95 because all pragmas must be printed out in the source listing. However, this may cause an extra form feed. " First, there is no change in Ada 95 compared to Ada 83 with respect to pragma Page. Second, form feed *is* in the allowed set of characters for Ada source code, but it is a logical end of line separator, so you cannot put it in the middle of a comment (since it ends the logical line). Again, no change from 83 to 95 here.