Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!utgpu!water!watnot!watmath!clyde!rutgers!seismo!mcvax!cernvax!cui!Baryeka From: Baryeka@cui.UUCP Newsgroups: comp.sys.amiga Subject: Re: aztec 3.40a & vt100 2.6 Message-ID: <40@cui.UUCP> Date: Tue, 10-Mar-87 13:18:48 EST Article-I.D.: cui.40 Posted: Tue Mar 10 13:18:48 1987 Date-Received: Thu, 12-Mar-87 23:44:06 EST References: <637@unccvax.UUCP> <1119@ulowell.cs.ulowell.edu> Reply-To: Baryeka@cui.UUCP (BARYEKA Jarek) Organization: University of Geneva/Switzerland Lines: 21 Keywords: Manx 3.40, VT100 2.6, fflush(). Summary: Compiler dependancy In article <1119@ulowell.cs.ulowell.edu> page@ulowell.cs.ulowell.edu (Bob Page) writes: >fwp@unccvax.UUCP (Rick Pasotto) wrote in article <637@unccvax.UUCP>: >> INIT - unknown command: >> nuMKEY ON > >I changed the init file to all lower case and that solved the problem. >It had nothing to to with the compiler. > >..Bob >-- >Bob Page, U of Lowell CS Dept. ulowell!page, page@ulowell.CSNET Yes it has. The case conversion in exe_cmd() (script.c) does not work if you use Manx 3.40. A possible hack is inserting fflush in this function. Beginning of exe_cmd ---> int i, 12; fflush(stdout); ^^^^^^^^^^^^^^^ for(i = 0; ...