From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Neil Jerram Newsgroups: gmane.lisp.guile.devel Subject: Re: [PATCH] Fix hanging of popen.test Date: Fri, 11 Jun 2010 20:48:56 +0100 Message-ID: <87vd9p5p07.fsf@ossau.uklinux.net> References: <1276210496-6477-1-git-send-email-neil@ossau.uklinux.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1276285754 31707 80.91.229.12 (11 Jun 2010 19:49:14 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 11 Jun 2010 19:49:14 +0000 (UTC) To: Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Fri Jun 11 21:49:12 2010 connect(): No such file or directory Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ONAE1-0004vq-Ct for guile-devel@m.gmane.org; Fri, 11 Jun 2010 21:49:09 +0200 Original-Received: from localhost ([127.0.0.1]:53118 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ONAE0-00077m-QQ for guile-devel@m.gmane.org; Fri, 11 Jun 2010 15:49:08 -0400 Original-Received: from [140.186.70.92] (port=59528 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ONADs-00075i-Rs for guile-devel@gnu.org; Fri, 11 Jun 2010 15:49:01 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1ONADr-0002yG-Fo for guile-devel@gnu.org; Fri, 11 Jun 2010 15:49:00 -0400 Original-Received: from mail3.uklinux.net ([80.84.72.33]:56342) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1ONADr-0002y2-Ah for guile-devel@gnu.org; Fri, 11 Jun 2010 15:48:59 -0400 Original-Received: from arudy (host86-163-100-238.range86-163.btcentralplus.com [86.163.100.238]) by mail3.uklinux.net (Postfix) with ESMTP id 186601F6848 for ; Fri, 11 Jun 2010 20:48:58 +0100 (BST) Original-Received: from arudy (unknown [192.168.11.8]) by arudy (Postfix) with ESMTP id DABF338026 for ; Fri, 11 Jun 2010 20:48:56 +0100 (BST) In-Reply-To: <1276210496-6477-1-git-send-email-neil@ossau.uklinux.net> (Neil Jerram's message of "Thu, 10 Jun 2010 23:54:56 +0100") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4-2.6 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:10463 Archived-At: Neil Jerram writes: > +(close-port (current-input-port)) > +(let loop () > + (display "closed\n" (current-error-port)) > + (force-output (current-error-port))) Oops, missing a `(loop)' at the end there. I'll see if the test still works after adding that in.