bug-guile
[Top][All Lists]
Advanced

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

open-output-pipe problem


From: Satoru Takabayashi
Subject: open-output-pipe problem
Date: Sat, 13 Jul 2002 22:56:57 +0900

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
  ABC123
  %

Hoever, with guile 1.4.1, it doesn't produce any outputs.

  % /usr/local/bin/guile -s x.scm  # guile 1.4.1
  %


Thanks,
-- Satoru Takabayashi



reply via email to

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