From fortune!hpda!hplabs!tektronix!zehntel!dual!lll-crg!gymble!umcp-cs!seismo!mcvax!aeb Wed Apr 24 04:18:20 1985 Relay-Version: version B 2.10.2 9/18/84; site wdl1.UUCP Posting-Version: version B 2.10.1 6/24/83 (MC840302); site mcvax.UUCP Path: wdl1!fortune!hpda!hplabs!tektronix!zehntel!dual!lll-crg!gymble!umcp-cs!seismo!mcvax!aeb From: aeb@mcvax.UUCP (Andries Brouwer) Newsgroups: net.games.hack Subject: Re: Spaces on input Message-ID: <628@mcvax.UUCP> Date: 24 Apr 85 12:18:20 GMT Article-I.D.: mcvax.628 Posted: Wed Apr 24 04:18:20 1985 Date-Received: 2 May 85 14:04:19 GMT References: <275@tilt.FUN> Reply-To: aeb@mcvax.UUCP (Andries Brouwer) Distribution: net Organization: CWI, Amsterdam Lines: 10 In article <275@tilt.FUN> kyrimis@tilt.FUN (Kriton Kyrimis) writes: > >The input routine in hack 1.0.2 does not seem to recognise spaces. It seems that a space is not everywhere regarded as a printing character. Fix in hack.tty.c: 127c127 < } else if(isprint(c)) { --- > } else if(isprint(c) || c == ' ') {