>
> We'll soon begin the process of releasing Guile-1.4.
>
> The current CVS Guile will be frozen Saturday morning. After this
> point, only bug-fixes will be admitted (with the exception for some
> code that Maciej will add lately).
>
> We'd like to urge people to test the current CVS Guile and to report
> bugs to [EMAIL PROTECTED] as soon as possible.
>
> Best regards,
> G4
>
Hi Mikael--
I can (using a build from this am) coredump guile at will. You'll
need to load my ftplib code (http://pweb.netcom.com/~knotwell/ftplib.scm)
and run the following commands:
guile> (load "/tmp/ftplib.scm")
guile> (define mine (ftplib:ftp "localhost"))
guile> (ftplib:set-transfer-mode 'passive)
guile> (ftplib:change-directory mine "/pub")
(#t . "250 CWD command successful.")
guile> (ftplib:dir-list mine (current-output-port))
At this point, you'll receive an infinite ('til crash) number of the following
message:
ERROR: In procedure force-output:
ERROR: Wrong type argument in position 1 (expecting OPOUTPORTP): #<closed: file 0>
gdb shows you this:
#0 0x8095a6e in scm_gc_mark (p=1075069512) at gc.c:914
#1 0x8095c1f in scm_gc_mark (p=1075544872) at gc.c:1030
#2 0x8095c1f in scm_gc_mark (p=1075544816) at gc.c:1030
#3 0x8095c1f in scm_gc_mark (p=1075543448) at gc.c:1030
#4 0x8095c1f in scm_gc_mark (p=1075542344) at gc.c:1030
#5 0x8095c1f in scm_gc_mark (p=1075540768) at gc.c:1030
#6 0x8095c1f in scm_gc_mark (p=1075539680) at gc.c:1030
#7 0x8095c1f in scm_gc_mark (p=1075538304) at gc.c:1030
#8 0x8095c1f in scm_gc_mark (p=1075573576) at gc.c:1030
#9 0x8095c1f in scm_gc_mark (p=1075572072) at gc.c:1030
#10 0x8095c1f in scm_gc_mark (p=1075570984) at gc.c:1030
#11 0x8095c1f in scm_gc_mark (p=1075569592) at gc.c:1030
#12 0x8095c1f in scm_gc_mark (p=1075568464) at gc.c:1030
#13 0x8095c1f in scm_gc_mark (p=1075567040) at gc.c:1030
#14 0x8095c1f in scm_gc_mark (p=1075565944) at gc.c:1030
#15 0x8095c1f in scm_gc_mark (p=1075564528) at gc.c:1030
#16 0x8095c1f in scm_gc_mark (p=1075563376) at gc.c:1030
#17 0x8095c1f in scm_gc_mark (p=1075561960) at gc.c:1030
#18 0x8095c1f in scm_gc_mark (p=1075560832) at gc.c:1030
#19 0x8095c1f in scm_gc_mark (p=1075559400) at gc.c:1030
#20 0x8095c1f in scm_gc_mark (p=1075558312) at gc.c:1030
Thanks.
--Brad