From a5630d7e77ae2bfa4e1a767aaed954f080699ef0 Mon Sep 17 00:00:00 2001 From: matz Date: Sat, 16 Sep 2006 14:15:22 +0000 Subject: * ext/pty/pty.c (establishShell): remove remaining unused line. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10951 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ ext/pty/pty.c | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 1428b0e28..7d36cac40 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sat Sep 16 23:14:29 2006 Yukihiro Matsumoto + + * ext/pty/pty.c (establishShell): remove remaining unused line. + Sat Sep 16 16:40:44 2006 Nobuyoshi Nakada * Makefile.in, common.in, instruby.rb, ext/extmk.rb, lib/mkmf.rb: diff --git a/ext/pty/pty.c b/ext/pty/pty.c index 24b1f99ad..8e263790a 100644 --- a/ext/pty/pty.c +++ b/ext/pty/pty.c @@ -226,7 +226,6 @@ establishShell(argc, argv, info) getDevice(&master,&slave); info->thread = rb_thread_current(); - currentPid = getpid(); if((i = fork()) < 0) { close(master); close(slave); -- cgit