Re: open-output-pipe problem

2002-08-08 Thread Thien-Thi Nguyen
From: Thien-Thi Nguyen <[EMAIL PROTECTED]> Date: Wed, 07 Aug 2002 20:20:48 -0700 i have experimented w/ back-porting the new popen.scm (including associated support in libguile) w/o success [...] turns out i was laboring under the classic stupidity of forgetting to unpack an SCM... l

Re: open-output-pipe problem

2002-08-01 Thread Thien-Thi Nguyen
From: Satoru Takabayashi <[EMAIL PROTECTED]> Date: Sat, 13 Jul 2002 22:56:57 +0900 I tried guile 1.4.1 and found a problem on open-output-pipe. hi, thanks for the bug report. i have reproduced the problem and noticed that it is gone in guile-HEAD, but have not yet figured out which of

open-output-pipe problem

2002-07-13 Thread Satoru Takabayashi
Hi! I tried guile 1.4.1 and found a problem on open-output-pipe. % cat x.scm (use-modules (ice-9 popen)) (let ((port (open-output-pipe "tr a-z A-Z"))) (write-line "abc123" port) (close-pipe port)) With guile 1.3.4, it works fine. % /usr/bin/guile -s x.scm# guile 1.3.4