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=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,8623fab5750cd6aa X-Google-Attributes: gid103376,public Path: g2news1.google.com!news1.google.com!news.glorb.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local1.nntp.dca.giganews.com!nntp.megapath.net!news.megapath.net.POSTED!not-for-mail NNTP-Posting-Date: Wed, 23 Jun 2004 15:28:59 -0500 From: "Randy Brukardt" Newsgroups: comp.lang.ada References: <40b9c99e$0$268$edfadb0f@dread16.news.tele.dk> <1086715817.122983@master.nyc.kbcfp.com> <1086733411.736049@master.nyc.kbcfp.com> <40C85035.4020706@noplace.com> <40C9EC3B.60304@noplace.com> <40CD90A4.8030005@noplace.com> <40CEDCB5.9000509@noplace.com> <1087325485.307616@master.nyc.kbcfp.com> <1087488758.881520@master.nyc.kbcfp.com> Subject: Re: Enum'Image (Was: Improving Ada's image) Date: Wed, 23 Jun 2004 15:29:23 -0500 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300 Message-ID: NNTP-Posting-Host: 64.32.209.38 X-Trace: sv3-PQLxFMoiV2x36aGGZfSwJ0jIm6TfzwVUOXq+I+glwZ9SOtP1g0k29jUghe/SBLqQELM75vDP32ySyva!74Qh+f78enUIgaRYLaQQ6dvOYbWf1wLLBNyYJfeuT8zkoKTsp9oSTBWLq1K732aXiEahT3PKr9DB X-Complaints-To: abuse@megapath.net X-DMCA-Complaints-To: abuse@megapath.net X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.1 Xref: g2news1.google.com comp.lang.ada:1823 Date: 2004-06-23T15:29:23-05:00 List-Id: "Jacob Sparre Andersen" wrote in message news:pl4qp57wtw.fsf_-_@sparre.crs4.it... > Adrian Wrigley wrote: > > Would the incompatibility be unnacceptable (to 200Y) simply to state > > that the case of Enum'Image is exactly as in the declaration. > > I think it would. Yes, definitely. The problem (ironically) would be all of those little functions to convert the case of enumerations. Code like that is likely to assume that the input is upper case, and if that changed, it would silently break, outputing gibberish. In any case, Text_IO.Enumeration_IO does let you set the case of the output. (It could use a Mixed_Case option, though). Remember that 'image is for Q&D output, not the fancy stuff (something we all forget often). Randy.