From williamkf@gmail.com Sun Mar 8 19:04:24 2009 Received: (at submit) by emacsbugs.donarmstrong.com; 9 Mar 2009 02:04:24 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: * X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=1.0 required=4.0 tests=MULTALT autolearn=no version=3.2.5-bugs.debian.org_2005_01_02 Received: from lists.gnu.org (terminus-est.gnu.org [66.92.78.210]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id n2924Ktr010538 for ; Sun, 8 Mar 2009 19:04:22 -0700 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LgUql-0006XP-GO for bug-gnu-emacs@gnu.org; Sun, 08 Mar 2009 22:04:15 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LgUqk-0006Vx-F8 for bug-gnu-emacs@gnu.org; Sun, 08 Mar 2009 22:04:14 -0400 Received: from [199.232.76.173] (port=33088 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LgUqk-0006Vl-0P for bug-gnu-emacs@gnu.org; Sun, 08 Mar 2009 22:04:14 -0400 Received: from mx20.gnu.org ([199.232.41.8]:35365) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LgUqj-00078a-HO for bug-gnu-emacs@gnu.org; Sun, 08 Mar 2009 22:04:13 -0400 Received: from wf-out-1314.google.com ([209.85.200.169]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LgQ3X-0003iG-CP for bug-gnu-emacs@gnu.org; Sun, 08 Mar 2009 16:57:07 -0400 Received: by wf-out-1314.google.com with SMTP id 28so1414430wfc.24 for ; Sun, 08 Mar 2009 13:56:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:date :x-google-sender-auth:message-id:subject:from:to:content-type; bh=Dei9ZEA+wQtH3BnoKQgIKb7hrzpy19RT3Qt3S/ez/Tk=; b=tcADCVl3we+PnhjdWOfWWsj37YmgIeHjVizwpjwsItF9F+kYiORRjbbfRHrPaSmJMc Nq2do5cElJmShWFCunUTKteg5Q1d7nh6Ue2GnkFv3pcTtOim+LvManwy98H1CLDeUiaC 0Mt0WFRA5I9X4J60TofEc8nEw5d1AMPVYavvs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:date:x-google-sender-auth:message-id:subject :from:to:content-type; b=oUhcXE+mzusmy3Apjm5VoBND1PPcHlmLSmodtV5CukwGuSr42peXW7JTejyX5dG+wQ dVVEqwifty6OkKlUr2diAMBHkWQXspDImtjIl1yAT8Pzi95hbf4NvvTY5V41hEMW7CAc oE7YVTTJWZr/vJuAYvoBkmHn1JkV0f8yQWe4c= MIME-Version: 1.0 Sender: williamkf@gmail.com Received: by 10.142.50.6 with SMTP id x6mr2187964wfx.270.1236545808391; Sun, 08 Mar 2009 13:56:48 -0700 (PDT) Date: Sun, 8 Mar 2009 13:56:48 -0700 X-Google-Sender-Auth: 0ead8f0e15b01463 Message-ID: Subject: Emacs shell exits when executed command sets stdout and stderr to be non-blocking From: "William K. Foster" To: bug-gnu-emacs@gnu.org Content-Type: multipart/alternative; boundary=000e0cd1a676a85e290464a1c1a8 X-detected-kernel: by mx20.gnu.org: Linux 2.6 (newer, 2) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) --000e0cd1a676a85e290464a1c1a8 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Hello, Create an application that does the following: void setFdBlocking(int fd, bool block) { // Set an fd's blocking flag on or off. int flags; if (0 > (flags = fcntl(fd, F_GETFL, 0))) { throw; } if (block) { flags &= ~O_NONBLOCK; } else { flags |= O_NONBLOCK; } if (0 > fcntl(fd, F_SETFL, flags)) { throw; } } // Make Stdout and Stderr be non-blocking. setFdBlocking(1, false); setFdBlocking(2, false); If you execute the application from a shell inside emacs, the shell will exit when the command returns. This does not happen for a shell outside of emacs. Thanks. -William --000e0cd1a676a85e290464a1c1a8 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Hello,

Create an application that does the following:

=A0 voi= d setFdBlocking(int fd, bool block) {
=A0=A0=A0 // Set an fd's block= ing flag on or off.
=A0=A0=A0 int flags;

=A0=A0=A0 if (0 > (fl= ags =3D fcntl(fd, F_GETFL, 0))) {
=A0=A0=A0=A0=A0 throw;
=A0=A0=A0 }

=A0=A0=A0 if (block) {
=A0= =A0=A0=A0=A0 flags &=3D ~O_NONBLOCK;
=A0=A0=A0 } else {
=A0=A0=A0= =A0=A0 flags |=3D=A0 O_NONBLOCK;
=A0=A0=A0 }

=A0=A0=A0 if (0 >= fcntl(fd, F_SETFL, flags)) {
=A0=A0=A0=A0=A0 throw;
=A0=A0=A0 }
= =A0 }

=A0 // Make Stdout and Stderr be non-blocking.
=A0 setFdBlocking(1, = false);
=A0 setFdBlocking(2, false);

If you execute the applicati= on from a shell inside emacs, the shell will exit when the command returns.=

This does not happen for a shell outside of emacs.

Thanks.
-William
--000e0cd1a676a85e290464a1c1a8-- From williamkf@gmail.com Sun Mar 8 20:03:53 2009 Received: (at 2602) by emacsbugs.donarmstrong.com; 9 Mar 2009 03:03:53 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: * X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=1.0 required=4.0 tests=MULTALT autolearn=no version=3.2.5-bugs.debian.org_2005_01_02 Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.168]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id n2933ofB026226 for <2602@emacsbugs.donarmstrong.com>; Sun, 8 Mar 2009 20:03:51 -0700 Received: by wf-out-1314.google.com with SMTP id 24so1717353wfg.13 for <2602@emacsbugs.donarmstrong.com>; Sun, 08 Mar 2009 20:03:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:date :x-google-sender-auth:message-id:subject:from:to:content-type; bh=VZGWRi/GsS7xKeWVZXJ3eCu8zvzEqpBd+/M9iL200fw=; b=cDv9WPsi/KIIV3wzKICNjvdM5YKkWzbPWRJRQmUaeQQojbpTk15GLWdW1NFcQ4SDGz imV5wWHtqIMPkR6FmtdRg8VrKSHSt6k2e0Jh2DTPZ/3w8RgvCpK+/oiVUSnfdkN5LS88 MArAVxo90Ccd2p+W4GIqkBHNz7autNxdy0OAo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:date:x-google-sender-auth:message-id:subject :from:to:content-type; b=GkEKUJsKto8MwfEDzg9AgLXgkvPdJ/DWD7k5Zqv4NC7YyAy9niHe6vpFCODjrDiw/x 2fOgiRuo284STEAS+UymFna4xKreyzBjnxqAAK1dV1gTqLGePb3c5rGJkHirD8JjH8Tm CToomsDfBes/wFHNrGdUdwKr+S2/N9KdG6BQg= MIME-Version: 1.0 Sender: williamkf@gmail.com Received: by 10.142.165.21 with SMTP id n21mr2326985wfe.56.1236567830007; Sun, 08 Mar 2009 20:03:50 -0700 (PDT) Date: Sun, 8 Mar 2009 20:03:49 -0700 X-Google-Sender-Auth: 7f3503e1fdc1e19f Message-ID: Subject: This occurs with at least Emacs v22.3.1 (eom) From: "William K. Foster" To: 2602@debbugs.gnu.org Content-Type: multipart/alternative; boundary=000e0cd175123f8f5f0464a6e236 --000e0cd175123f8f5f0464a6e236 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit --000e0cd175123f8f5f0464a6e236 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit
--000e0cd175123f8f5f0464a6e236-- From williamkf@gmail.com Mon Mar 9 15:09:59 2009 Received: (at 2602) by emacsbugs.donarmstrong.com; 9 Mar 2009 22:10:00 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: * X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=1.0 required=4.0 tests=MULTALT autolearn=no version=3.2.5-bugs.debian.org_2005_01_02 Received: from mail-gx0-f177.google.com (mail-gx0-f177.google.com [209.85.217.177]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id n29M9us0007365 for <2602@emacsbugs.donarmstrong.com>; Mon, 9 Mar 2009 15:09:58 -0700 Received: by gxk25 with SMTP id 25so3085634gxk.1 for <2602@emacsbugs.donarmstrong.com>; Mon, 09 Mar 2009 15:09:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:date :x-google-sender-auth:message-id:subject:from:to:content-type; bh=uQb92v2kYeg6BHHXQ7T98PgbSUXPUR2fqxb281lWNmY=; b=mqGtZPr1iocElDbksVpk40E2PtZRs1siSW9M8W6IfNK21w7yXcAnDgNeapUcEl32mI VP8qxf1OJtUSoYSJbrPbeAArWf5mikTXmNXO8/TnZ6tZ2xoTl0tjmf+rHqbuhbwV+r2I UMK895b46MTvZokx64F7j33fZy559zp3soBIA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:date:x-google-sender-auth:message-id:subject :from:to:content-type; b=Kte23vbpzLAS0KYtPBPFegNtCi1eOsnrcKbHMZ0WsjqM+SAgiyj2/zz9V1G1F1F6T9 xDBbU+Tw5xBRbVqb6WedGcDMctPgFXMcDKIDHWHKcbekcyVgMPm068Y3ROzHSmjwZ8G2 QwCMHI2GwTiCMVI8t8ve83P8kB1H0IUBod7Gw= MIME-Version: 1.0 Sender: williamkf@gmail.com Received: by 10.142.58.2 with SMTP id g2mr2725764wfa.313.1236636591167; Mon, 09 Mar 2009 15:09:51 -0700 (PDT) Date: Mon, 9 Mar 2009 15:09:51 -0700 X-Google-Sender-Auth: d583837966676fdf Message-ID: Subject: This occurs with at least Emacs v22.3.1 From: "William K. Foster" To: 2602@debbugs.gnu.org Content-Type: multipart/alternative; boundary=001636e0b9f4bb9af10464b6e484 --001636e0b9f4bb9af10464b6e484 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit This bug occurs with at least Emacs v22.3.1. --001636e0b9f4bb9af10464b6e484 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit This bug occurs with at least Emacs v22.3.1.



--001636e0b9f4bb9af10464b6e484-- From williamkf@gmail.com Mon Mar 9 18:25:31 2009 Received: (at 2602) by emacsbugs.donarmstrong.com; 10 Mar 2009 01:25:31 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: * X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=1.0 required=4.0 tests=MULTALT autolearn=no version=3.2.5-bugs.debian.org_2005_01_02 Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.169]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id n2A1POrO028361 for <2602@emacsbugs.donarmstrong.com>; Mon, 9 Mar 2009 18:25:25 -0700 Received: by wf-out-1314.google.com with SMTP id 24so2318449wfg.13 for <2602@emacsbugs.donarmstrong.com>; Mon, 09 Mar 2009 18:25:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to :content-type; bh=vyAXRzlA1nz7oFrKawpHrVd/FG3Japf+7+dhT2YWV4w=; b=dn+/eKtGsU62iY9PnjwNVv7BbHV2yAUeYZVSbm1uhuvva5tbWVjJWP2IBRGBSmbGO1 CebVtTLdxRO7iheELMxZNoZ13GoVi8wnGClTvbUqmsu1NQ7YiCYGN7z5e9M1uqJlpYYO Bw2jM5XY17sldz6vMstZGxNpv8xIg2glSbLCQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type; b=uSPDPdffm2RyZ3Si3M+Do2jA/Y8DKaYiHjYTLyuvmaicVh2l/UCyY9IGuWEJcOivi6 HVjwzX+oToiW0L1pVd8Tog0iMYgfR0u+Iyha+vUHNH9ZN4RHpqaoFGPbrYOuxLH4b4TC Hi5+sZ+SZ9JNDzyC2PTeEMpQ7GfGbL01oYaww= MIME-Version: 1.0 Sender: williamkf@gmail.com Received: by 10.143.5.21 with SMTP id h21mr2803904wfi.180.1236648323908; Mon, 09 Mar 2009 18:25:23 -0700 (PDT) In-Reply-To: References: Date: Mon, 9 Mar 2009 18:25:23 -0700 X-Google-Sender-Auth: 8a3b8cb44068cf8c Message-ID: Subject: This occurs with at least Emacs v22.3.1 From: "William K. Foster" To: 2602@debbugs.gnu.org Content-Type: multipart/alternative; boundary=001636e0a64a0f050a0464b9a02f --001636e0a64a0f050a0464b9a02f Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit The original description of this bug omitted the fact that this issue occurs with at least Emacs v22.3.1. -William --001636e0a64a0f050a0464b9a02f Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit The original description of this bug omitted the fact that this issue occurs with at least Emacs v22.3.1.

-William
--001636e0a64a0f050a0464b9a02f-- From rgm@gnu.org Thu Mar 12 19:32:17 2009 Received: (at control) by emacsbugs.donarmstrong.com; 13 Mar 2009 02:32:17 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-5.0 required=4.0 tests=VALID_BTS_CONTROL, X_DEBBUGS_NO_ACK autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id n2D2WE1v018504 for ; Thu, 12 Mar 2009 19:32:16 -0700 Received: from rgm by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1LhxC2-0007aH-9N; Thu, 12 Mar 2009 22:32:14 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18873.50606.212707.945346@fencepost.gnu.org> Date: Thu, 12 Mar 2009 22:32:14 -0400 From: Glenn Morris To: control Subject: control message X-Debbugs-No-Ack: yes severity 2650 wishlist merge 2602 2653 severity 2648 minor From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 24 17:04:00 2016 Received: (at 2602) by debbugs.gnu.org; 24 Jan 2016 22:04:00 +0000 Received: from localhost ([127.0.0.1]:35241 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aNSlM-0005sg-E3 for submit@debbugs.gnu.org; Sun, 24 Jan 2016 17:04:00 -0500 Received: from mail-qg0-f49.google.com ([209.85.192.49]:36290) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aNSlL-0005sV-AV for 2602@debbugs.gnu.org; Sun, 24 Jan 2016 17:03:59 -0500 Received: by mail-qg0-f49.google.com with SMTP id e32so96894750qgf.3 for <2602@debbugs.gnu.org>; Sun, 24 Jan 2016 14:03:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; bh=OT+1vdRzLohN0TW6mSHD8almdaeky5KSZCHkx1XH8IY=; b=GxFI2ajcosltkHZFfJJsnJibiMd7vtkaPSM1WrOzFl7DnKcNffYZfWoxRfFg3XgtCT Kp5ZNEm3NcTaSrjvkOxLZfDhR5S49QCxqSrEylmTUE9YObML653l0fyu4Y4LEX3VIFRt gCYAsrGzhX6ataBYCGVaU6VuAnQjzn5j1AjNlTf7Elm4CowuB6pZ8jn7eVfdp3j2O9q1 f+6frWb1ke7V7quClaco15DJ964JnHYD3kahCw0YUnsgmIzMNbgMU9kpO74/U5i2GJ7i +gLCBq/L97+6w/gNNWLbBTBly8cTSZjubM1QsRRCoqgzqeSy4Qfk/MnXkDHfcSgXpTbC gruw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version:content-type; bh=OT+1vdRzLohN0TW6mSHD8almdaeky5KSZCHkx1XH8IY=; b=VsEhOTw5Ygt9/IRLRkiWHdBZNOqBIa+KHg6RQSoZDhAjCGl1XVrTb3n9yXk7sfpQr7 MPjewIgQU69aAALwsIs4TqrUehwUwC43DEPhPBZGRwjQFLxeC48AgnF+RMg/iK897Tc0 2NQSz4shf5ihtI4VgE47Eryye68pNx2NuicISdM0Lq3sMtP//99MZQbGBQRbBdcJZ6yZ WRiq1+mslZS619dOO6B36Vbf/br4NVrVBoO5Yjlf945I+XpbpW95PmOukDMjiKoJINXI PP76F2F8vkGc7oPuA7JQQj+DZ6R3ALEXq3Y+aEUSCEVxgM4Zhnd1OlINjVxCyQbD8EhA XlTQ== X-Gm-Message-State: AG10YOShaczFRVaClASJciEfDyGz4bFj13/E/JVUgSqVdLb7NR/xubRVKl8frB0XiNylUA== X-Received: by 10.140.157.206 with SMTP id d197mr18827388qhd.3.1453673033987; Sun, 24 Jan 2016 14:03:53 -0800 (PST) Received: from Andrews-MacBook-Pro.local.ahyatt-laptop (cpe-74-73-128-199.nyc.res.rr.com. [74.73.128.199]) by smtp.gmail.com with ESMTPSA id 11sm7561913qgx.32.2016.01.24.14.03.52 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 24 Jan 2016 14:03:52 -0800 (PST) From: Andrew Hyatt To: "William K. Foster" Subject: Re: bug#2602: Emacs shell exits when executed command sets stdout and stderr to be non-blocking References: Date: Sun, 24 Jan 2016 17:03:50 -0500 In-Reply-To: (William K. Foster's message of "Sun, 8 Mar 2009 13:56:48 -0700") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (darwin) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 2602 Cc: 2602@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) I cannot reproduce this on Emacs 25. Can you let me know if you are still able to see this bug, otherwise I'll close this issue. "William K. Foster" writes: > Hello, > > Create an application that does the following: > > void setFdBlocking(int fd, bool block) { > // Set an fd's blocking flag on or off. > int flags; > > if (0 > (flags = fcntl(fd, F_GETFL, 0))) { > throw; > } > > if (block) { > flags &= ~O_NONBLOCK; > } else { > flags |= O_NONBLOCK; > } > > if (0 > fcntl(fd, F_SETFL, flags)) { > throw; > } > } > > // Make Stdout and Stderr be non-blocking. > setFdBlocking(1, false); > setFdBlocking(2, false); > > If you execute the application from a shell inside emacs, the shell will exit when the command returns. > > This does not happen for a shell outside of emacs. > > Thanks. > > -William From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 24 17:04:15 2016 Received: (at control) by debbugs.gnu.org; 24 Jan 2016 22:04:15 +0000 Received: from localhost ([127.0.0.1]:35245 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aNSlb-0005tZ-K2 for submit@debbugs.gnu.org; Sun, 24 Jan 2016 17:04:15 -0500 Received: from mail-qg0-f42.google.com ([209.85.192.42]:34462) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aNSlZ-0005tK-S2 for control@debbugs.gnu.org; Sun, 24 Jan 2016 17:04:14 -0500 Received: by mail-qg0-f42.google.com with SMTP id 6so96038266qgy.1 for ; Sun, 24 Jan 2016 14:04:13 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:message-id:to:from:subject; bh=mYcMzm3DYhl/ZGllI2O32MiaC2+SOLvcLgiGj6Ud+J0=; b=EJQAuYy/x2SlTE3qpUx5N2TIq+1T0e2bLTLjAYhrZm2LbjYAm0Ax17RUNokJIwDIoB WT/0k2HVSz8wzOUMvIbs/xp6esoSlqiafxIVkq9YkRyRu18kaFZ5GZI8uzL4G2FpLeOB hfFVv9NpnUuGmLfs14JdkfYSBTD3iQ9M3wcMaPKz2VFPaZdHLwSnNcEawvxJLNZTqYOx hYtr40hEa/IeTZQfsl1MQAOWW6Tw89g2K24awW8E3NSSZE9JYgHNOEqHXVDJ5zBdYiW5 /EYkTK3pXE4LQ0hkby/Pzuxh8VW4q20SYj1U9vy7U5yiu6uTk9X47GH5aVTi9aTDeKHY Yphg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:message-id:to:from:subject; bh=mYcMzm3DYhl/ZGllI2O32MiaC2+SOLvcLgiGj6Ud+J0=; b=cAtJauZrPS/iB1CVhH4Fw3wHQsa8VUbSdxkODGLq8k2Hj/0wp+cRerbIeDvKnO978M QhsqBCQEuv0Yl7vBNAF2U6mQehMIxM1syebsu9NcEUSowBQaPf7ocQC3D0/1MHbNzo+2 j/zgbuUVgDTjsqBbKxc0SkWrGPvy3FMP30I8vIbrALTeqjA+h6duM+o3XiCK/mgJP0BI cvsMXzvaIbKNndkc1GC+HroIjejRFBACzpb0Pw9IgS20up7nGtXbZvr638NmwtC5VOVX NUJgWLjw04zGdoNcYszMa4G8pdGqi5V688PBrKU3uucbrOIQINq7rcyF4I7HxzF7tdVZ hQqA== X-Gm-Message-State: AG10YORnI/AVbK0lgujlUccVBeV4MC8bOQp5bDO1JBwCyrNOUcRlK4khb3dMJVPvD374PQ== X-Received: by 10.140.98.100 with SMTP id n91mr17523981qge.56.1453673048628; Sun, 24 Jan 2016 14:04:08 -0800 (PST) Received: from Andrews-MacBook-Pro.local.ahyatt-laptop (cpe-74-73-128-199.nyc.res.rr.com. [74.73.128.199]) by smtp.gmail.com with ESMTPSA id a129sm7585724qkb.45.2016.01.24.14.04.07 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 24 Jan 2016 14:04:07 -0800 (PST) Date: Sun, 24 Jan 2016 17:04:06 -0500 Message-Id: To: control@debbugs.gnu.org From: Andrew Hyatt Subject: control message for bug #2602 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) tags 2602 unreproducible From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 24 23:23:25 2016 Received: (at control) by debbugs.gnu.org; 25 Jan 2016 04:23:25 +0000 Received: from localhost ([127.0.0.1]:35369 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aNYgX-00012L-2q for submit@debbugs.gnu.org; Sun, 24 Jan 2016 23:23:25 -0500 Received: from mail-qg0-f43.google.com ([209.85.192.43]:34987) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aNYgV-000129-DO for control@debbugs.gnu.org; Sun, 24 Jan 2016 23:23:23 -0500 Received: by mail-qg0-f43.google.com with SMTP id o11so100326543qge.2 for ; Sun, 24 Jan 2016 20:23:23 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:message-id:to:from:subject; bh=XConCLNjMXJv0y7qUKDBP0pKk/sskdJyHyFW9EHL/WU=; b=bRs9UnqON9n5PG30jgXWMuMEtgNxymHX5F5NvJoHqJnltJWq2KPffRSsh30c9fHtt6 LWlzurnoZbVcRP3o0P5b2m8bFYuFJ8OHIHTwN2vJTTbumKOReoBuZ/mXFMSnnrIldWji xwSjDvgmonHizPz4rZGfEocuKDYjUF0wesINRUKEiR0T3TUI7PBg4XLyQ5vWJvItN8hB yJ1EUU1ROUAi0vHrPhfW8Yn2/S4LFBLbM9z9nlnpjzHfTNBlQT21UF/mWVVURQP4QqS7 fgZfniwYxJ5R4mIvEZoj4Wv0c2Z5Tn9y5sV7CYEejzgUaICWNCNj8KkL/vExNymwMEqz qDyQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:message-id:to:from:subject; bh=XConCLNjMXJv0y7qUKDBP0pKk/sskdJyHyFW9EHL/WU=; b=QGZEJ3NoPWIS5geBbOvcDFdYjX3huqe4BZWLDo/x+NnSBZmOKjP4AbVzNIGt1khjh4 kFpTqoRcBSj8+OBOjtnNlvvukA33tUQjPlejU02Tx8wrFgBCySzV3E0qNROL3xc1RpuM T/fBsLA7z01BHOrdUIaLjR0Z2QySeeEEwB6nOIwzQc1J0rLvK0mnaKuq9ItjTnG/yPUq mm8iHbSMEtqxf+JejWKMhGxJFuwPa1Jd/ZlXPNgj3Z1S9nR5OakXo8wgbpI3ZGv+dBLH 6OkbwzB+bNbRJsPCOExyqsn5Bj5d5ZdLFArdKdFofXuu+O+g6FGXJNtpoEVpTLN7h8Yg 7+CQ== X-Gm-Message-State: AG10YOSGnPu55N+KAvYpdXXqjPFFw1OIfbW7s3HMCqEt48xKd8qrlwFLopeCiAaWAsR52A== X-Received: by 10.140.146.198 with SMTP id 189mr19699319qhs.76.1453695798191; Sun, 24 Jan 2016 20:23:18 -0800 (PST) Received: from Andrews-MacBook-Pro.local.ahyatt-laptop (cpe-74-73-128-199.nyc.res.rr.com. [74.73.128.199]) by smtp.gmail.com with ESMTPSA id h64sm8061310qgh.39.2016.01.24.20.23.17 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 24 Jan 2016 20:23:17 -0800 (PST) Date: Sun, 24 Jan 2016 23:23:16 -0500 Message-Id: To: control@debbugs.gnu.org From: Andrew Hyatt Subject: control message for bug #2602 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) tags 2602 unreproducible close 2602 From unknown Sat Jun 21 12:10:54 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 22 Feb 2016 12:24:03 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator