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 X-Google-Thread: 103376,1b78051e65d4576a X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2004-02-27 05:00:37 PST Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!newsfeed.icl.net!news-FFM2.ecrc.net!newsfeed.stueberl.de!peer1.news.newnet.co.uk!peer1.news.newnet.co.uk!zen.net.uk!fuller.zen.co.uk!news.hacking.dk!pnx.dk!munin.nbi.dk!not-for-mail From: Jacob Sparre Andersen Newsgroups: comp.lang.ada Subject: Re: types and non-contigous ranges Date: 27 Feb 2004 14:00:32 +0100 Organization: Munin Sender: sparre@sparre.crs4.it Message-ID: References: <403e001b$0$144$edfadb0f@dread11.news.tele.dk> <403ef7ec$0$128$edfadb0f@dread11.news.tele.dk> NNTP-Posting-Host: 80.241.165.38 Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: munin.grove.home 1077886836 14842 80.241.165.38 (27 Feb 2004 13:00:36 GMT) X-Complaints-To: sparre@munin.nbi.dk NNTP-Posting-Date: Fri, 27 Feb 2004 13:00:36 +0000 (UTC) User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Xref: archiver1.google.com comp.lang.ada:5891 Date: 2004-02-27T14:00:32+01:00 List-Id: Erlo Haugen skrev: > Jacob Sparre Andersen skrev: > > Erlo Haugen skrev: > >>what is the easiest way to define a (sub)type consisting of ranges > >>and single values? > > type Valid_Characters is ('0', '1', '2', ... '9', > > 'A', 'B', 'C', ... '�', '�', '�'); > But why is it that when i use '�', the compiler says that strings > are delimited by " ? Using UC_AE_Diphthong is OK. That is probably because you and your compiler aren't in complete agreement about which character encoding you are using. If the compiler expects you to use ISO-8859-1 (which is very likely) and you are actually using UTF-8 (which I would guess from the error message), then the compiler will not read what you see as "�" as "�" but as a sequence of two other characters. Jacob -- Rent-a-Minion Inc. Because good help is so hard to find.