>Guile list,
>
>When I run
>
> (let ((lsock (socket AF_INET SOCK_STREAM 0)))
> (bind lsock AF_INET INADDR_ANY 4242)
> (listen lsock 5)
> (let ((csock (accept lsock)))
> (display "foo" csock)
> (close csock)))
>
>and telnet to port 4242, guile barfs with the following error:
>
> ERROR: In procedure display in expression (display "foo" csock):
> ERROR: Wrong type argument in position 2: (#<input: output: file 5> . #(2 2180006087 2752))
> ABORT: (wrong-type-arg)
>
>Ideas? Thanks.