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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,b4ef614edc05202a,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-07-10 10:38:14 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed.stueberl.de!newsfeed.freenet.de!news.freenet.de!not-for-mail From: Jan Prazak Subject: urgent glide question Date: Wed, 10 Jul 2002 19:38:49 -0100 Newsgroups: comp.lang.ada Message-ID: User-Agent: Pan/0.11.2 (Unix) Mime-Version: 1.0 Content-Type: text/plain; charset=iso885915 Content-Transfer-Encoding: 8bit X-Comment-To: ALL NNTP-Posting-Host: 213.7.194.182 X-Trace: 1026322669 news.freenet.de 26972 213.7.194.182 X-Complaints-To: abuse@freenet.de Xref: archiver1.google.com comp.lang.ada:26992 Date: 2002-07-10T19:38:49-01:00 List-Id: Hello, I have found out that there is an IDE add-on for emacs, called glide. It seems to be the only "good" IDE for gnat, since tia and grasp are very user-unfriendly (and do not work correctly on my PC). But there seems to be a problem when running terminal-applications (text mode) under emacs/glide. Take a look at this simple example: ----------------------- with Ada.Text_IO; use Ada.Text_IO; procedure LEdit is S : String(1..20); I : Integer; begin New_Line; Put("Enter a string: "); Get_Line(S, I); New_Line(3); Put_Line("You have entered: " & S(1..I)); end LEdit; ------------------------------------------ When I execute it in emacs, it is shown in a separate window (below the source code) (that's ok), but when I enter something and press enter, nothing happens, the cursor just goes to next line. I have then to kill the running program to stop it (because ctrl+c doesn't work). What's that??? How to solve it? Is there a possibility to run all compiled programs in a terminal (KDE shell)? (There it works.) Thanks! Jan