From f491696f4b1320f7e26801ec189f4f874400bc52 Mon Sep 17 00:00:00 2001 From: akr Date: Sat, 8 May 2010 08:08:29 +0000 Subject: update doc. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27674 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/pty/pty.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/pty/pty.c') diff --git a/ext/pty/pty.c b/ext/pty/pty.c index 9650f533f2..ff506a107b 100644 --- a/ext/pty/pty.c +++ b/ext/pty/pty.c @@ -462,10 +462,10 @@ pty_close_pty(VALUE assoc) * # assuming that factor uses stdio for stdout buffering. * # If IO.pipe is used instead of PTY.open, * # this code deadlocks because factor's stdout is fully buffered. + * require "io/console" * m, s = PTY.open - * system("stty raw", :in=>s) # disable newline conversion. * r, w = IO.pipe - * pid = spawn("factor", :in=>r, :out=>s) + * pid = s.raw { spawn("factor", :in=>r, :out=>s) } * r.close * s.close * w.puts "42" -- cgit v1.2.3