Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!watmath!clyde!rutgers!husc6!seismo!mcvax!ukc!dcl-cs!bath63!ma6nrr From: ma6nrr@bath63.UUCP Newsgroups: net.sources Subject: Re: mz.c Message-ID: <387@bath63.bath.ac.uk> Date: Fri, 21-Nov-86 18:49:18 EST Article-I.D.: bath63.387 Posted: Fri Nov 21 18:49:18 1986 Date-Received: Sun, 23-Nov-86 04:35:54 EST References: <4247@ism780c.UUCP> Reply-To: ma6nrr@ux63.bath.ac.uk (Rashbrook) Organization: University of Bath, England Lines: 17 I find the maze looks better if you alter the print () routine: ... if( leftwall(cell) ) ch = '|'; else { ch='_'; if( !botwall(cell) && !botwall(neighbor(cell, LEFT)) ) ch='.'; } putchar(ch); (Actually my version uses neighbour instead of neighbor throughout) This alteration only prints full stops not next to underlines. (I hope this has SOME approval :-)