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,b4ef614edc05202a X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-07-10 12:19:58 PST Path: archiver1.google.com!news2.google.com!news1.google.com!newsfeed.stanford.edu!news.tele.dk!small.news.tele.dk!194.42.224.136!diablo.netcom.net.uk!netcom.net.uk!kibo.news.demon.net!news.demon.co.uk!demon!pogner.demon.co.uk!not-for-mail From: Simon Wright Newsgroups: comp.lang.ada Subject: Re: urgent glide question Date: 10 Jul 2002 19:58:23 +0100 Organization: Pushface Sender: simon@smaug Message-ID: References: NNTP-Posting-Host: pogner.demon.co.uk X-NNTP-Posting-Host: pogner.demon.co.uk:62.49.19.209 X-Trace: news.demon.co.uk 1026328426 nnrp-01:5342 NO-IDENT pogner.demon.co.uk:62.49.19.209 X-Complaints-To: abuse@demon.net User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Xref: archiver1.google.com comp.lang.ada:26995 Date: 2002-07-10T19:58:23+01:00 List-Id: Jan Prazak writes: > 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? I think you have to C-c C-c (ie, ctrl-c _twice_). > Is there a possibility to run all compiled > programs in a terminal (KDE shell)? (There it works.) (The version of glide I'm using may not be the same as yours, so there may be some differences). If you edit the Project file (Ada/Project/Edit) and select the Ada Menu tab, there should be a section like Running the application (menu Ada->Run): [Help] (run_cmd) [INS][DEL] cd ${build_dir} [INS][DEL] ${main} [INS] If you change the ${main} line to xterm -e ${main} (or whatever your favourite terminal program is, with the flag to name the program to run in it) and save the project file, you should find Ada/Run (C-c r) runs in a separate terminal window .. well, it might work!