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-Thread: 103376,8143b93889fe9472 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit X-Received: by 10.180.98.102 with SMTP id eh6mr500329wib.7.1359588511919; Wed, 30 Jan 2013 15:28:31 -0800 (PST) MIME-Version: 1.0 Path: bp2ni7056wib.1!nntp.google.com!feeder1.cambriumusenet.nl!feed.tweaknews.nl!85.12.40.131.MISMATCH!xlned.com!feeder3.xlned.com!feeder.erje.net!eu.feeder.erje.net!news2.arglkargh.de!nuzba.szn.dk!news.jacob-sparre.dk!munin.jacob-sparre.dk!pnx.dk!.POSTED!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: Ada standard and maximum line lengths Date: Wed, 30 Jan 2013 17:28:26 -0600 Organization: Jacob Sparre Andersen Research & Innovation Message-ID: References: <8dfcf819-e1d0-4578-a795-a4bf724b5014@googlegroups.com> <80a5c765-e5ff-4e7d-bc1b-e35f92a710a7@googlegroups.com> <15vb0qqqhjfhw.1oh0ihxfbhw5a.dlg@40tude.net> <8e359168-9f18-437c-8188-6d1bd85ebed6@googlegroups.com> <115ytn2r5nvqf$.11fx46ufzkxhn.dlg@40tude.net> NNTP-Posting-Host: static-69-95-181-76.mad.choiceone.net X-Trace: munin.nbi.dk 1359588511 31281 69.95.181.76 (30 Jan 2013 23:28:31 GMT) X-Complaints-To: news@jacob-sparre.dk NNTP-Posting-Date: Wed, 30 Jan 2013 23:28:31 +0000 (UTC) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.5931 X-RFC2646: Format=Flowed; Original X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 Date: 2013-01-30T17:28:26-06:00 List-Id: "Dmitry A. Kazakov" wrote in message news:115ytn2r5nvqf$.11fx46ufzkxhn.dlg@40tude.net... > On Tue, 29 Jan 2013 19:22:44 -0800 (PST), Lucretia wrote: > >> I will have multiple representations, but that will be mainly due to >> character types, i.e. utf-8, wide, etc. > > Make source-to-parser interface UTF-8. Wide-I/O backend would convert to > UTF-8. Agreed. Ada 2012 requires Ada compilers to accept UTF-8. I rather doubt that there is much value to accepting anything else (given that 7-bit ASCII is a straight subset of UTF-8). Straight 8-bit Latin-1 might be an exception for historical reasons, but for a new implementation, start with UTF-8 and worry about other formats later (and possibly never). Randy.