Subject: Re: Newbie Help Please:  Reading into a list from a file
From: Erik Naggum <erik@naggum.no>
Date: 1999/04/30
Newsgroups: comp.lang.lisp
Message-ID: <3134473642124751@naggum.no>

* Kent M Pitman <pitman@world.std.com>
|  (defun peek-char-after-whitespace (stream)
|    (loop for ch = (read-char stream nil nil)
|          while ch
|          when (not (whitespace? stream))
| 	   do (return ch)))

  I'd've used (peek-char t stream nil nil) for this.  have I read the
  specification too well, again?  :)

#:Erik