guile-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: guile 2.1.7 skips while condition


From: Andy Wingo
Subject: Re: guile 2.1.7 skips while condition
Date: Mon, 13 Mar 2017 20:49:44 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux)

On Mon 13 Mar 2017 18:09, Arne Babenhauserheide <address@hidden> writes:

> Here’s a shortened version:

Thanks.  Here's a shorter version :)

(call-with-input-string "A"
  (lambda (inport)
    (let ((nextchar (read-char inport)))
      (while (not (eof-object? nextchar))
        (pk nextchar)
        (set! nextchar (read-char inport))
        (continue)))))

Working on a fix.

Andy



reply via email to

[Prev in Thread] Current Thread [Next in Thread]