Generic Function
:EOF if the end-of-file is reached, ornil if no input is currently available. stream
stream-read-char-no-hang stream => result
A stream.
Either a character, an:EOF symbol, ornil.
stream-read-char-no-hang implementsread-char-no-hang. It returns either a character read from the stream, an:EOF if end-of-file is reached, ornil if no input is available. The default method provided byfundamental-character-input-stream simply callsstream-read-char which is sufficient for file streams, but interactive streams should define their own method. fundamental-character-input-streamstream-read-char