Keyboard input/Obtain a Y or N response: Difference between revisions

Line 218:
 
Explanation:
<pre>When a single-character input is not accepted till <Enter> it means your connection to Lisp is not direct, and whatever is doing your connection has a bug that makes it not send the input till it has a whole line to send.
is not direct, and whatever is doing your connection has a bug that makes it not send the input
Both of the above versions work fine in Lispworks, and respond immediately to a single character. To fix a bug that requires <Enter> when it shouldn't, fix that in the configuration of whatever sends your input to Lisp.
till it has a whole line to send. Both of the above versions work fine in Lispworks, and respond
Both of the above versions work fine in Lispworks, and respond immediately to a single character. To fix a bug that requires <Enter> when it shouldn't, fix that in the configuration of whatever sends your input to Lisp.
that in the configuration of whatever sends your input to Lisp. The main difference in the above
two versions is that the long one uses *STANDARD-INPUT* instead of *QUERY_IO* which might or might
not make a difference when there is a bug in your connection to your Lisp environment.</pre>
 
=={{header|D}}==
Anonymous user