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,29495b0e9519b616 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-12-10 10:33:53 PST Path: archiver1.google.com!news2.google.com!newsfeed2.dallas1.level3.net!news.level3.com!crtntx1-snh1.gtei.net!news.gtei.net!newsfeed1.easynews.com!easynews.com!easynews!elnk-pas-nf1!newsfeed.earthlink.net!stamper.news.pas.earthlink.net!newsread2.news.pas.earthlink.net.POSTED!a6202946!not-for-mail From: Jeffrey Carter Organization: jrcarter commercial-at acm [period | full stop] org User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.4) Gecko/20030624 X-Accept-Language: en-us, en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: Latin_1 and portability References: <344d0fee.0312100415.63724db9@posting.google.com> In-Reply-To: <344d0fee.0312100415.63724db9@posting.google.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Message-ID: Date: Wed, 10 Dec 2003 18:33:53 GMT NNTP-Posting-Host: 63.184.105.61 X-Complaints-To: abuse@earthlink.net X-Trace: newsread2.news.pas.earthlink.net 1071081233 63.184.105.61 (Wed, 10 Dec 2003 10:33:53 PST) NNTP-Posting-Date: Wed, 10 Dec 2003 10:33:53 PST Xref: archiver1.google.com comp.lang.ada:3323 Date: 2003-12-10T18:33:53+00:00 List-Id: Xavier Serrand wrote: > For return (or enter) > > when using Text_Io.Get_Immediate (E); > > on UNIX or Linux Suse Character'Pos (E) = 10 > on Windows 2000 Character'Pos (E) = 13 You could write if Text_IO.End_Of_Line then Text_IO.Skip_Line; -- End of line processing else Text_IO.Get_Immediate (E); -- Normal character processing end if; or Text_IO.Get_Immediate (E); case E is when Latin_1.CR | Latin_1.LF => -- End of line processing when ... -- other special cases when others => -- Normal character processing end case; -- Jeff Carter "Perfidious English mouse-dropping hoarders." Monty Python & the Holy Grail 10