The bug seems to be known, and I'd have thought it would be important enough to fix right away...but who knows? I noticed in the Beginner's Guide the important key chart never included the backspace which I thought rather odd at the time!
Anyway not sure if people can read from the source button and was told about this litte trick concerning posting code:
START1:
PRINT "What name would you like the chairman of your Company "
INPUT "to be known by? ", ACEOName$
PRINT "You have chosen the name " + ACEOName$ + ". Do you want to keep this name?"
PRINT "Y/N."
wait key
`check choice to keep name
IF KeyState(49)
GOTO START1
So I reckon this is a good way to get confirmation...