
: getACE  -  A shell called by kshoptions.  Determines is a user wants
:		to include ACE in a Keyshell configuration.

: TNIX version - 23JAN84
: Keyshell Version Number 1


invalid=0
while test $invalid
do
	echo
	echo -n "Will you be using ACE, Advanced Screen-Oriented Editor (y or n)? "
	read INPUT
	case $INPUT in
	Y | y)	ace=1
		invalid=
		echo "#define _ace 1" >>$kppdefs
		echo " o  The text editor ACE is included." >>$kshconfig
	;;
	N | n)	ace=
		invalid=
		echo " o  The text editor ACE is not included." >>$kshconfig
		;;
	*)	echo "Invalid input.  Please enter (y) for yes or (n) for no.";;
	esac
done

