From unknown Mon Jun 23 13:11:13 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#17506 <17506@debbugs.gnu.org> To: bug#17506 <17506@debbugs.gnu.org> Subject: Status: [PATCH] grep: port mb_next_wc to RHEL 6.5 x86-64 Reply-To: bug#17506 <17506@debbugs.gnu.org> Date: Mon, 23 Jun 2025 20:11:13 +0000 retitle 17506 [PATCH] grep: port mb_next_wc to RHEL 6.5 x86-64 reassign 17506 grep submitter 17506 Paul Eggert severity 17506 normal tag 17506 easy fixed patch thanks From debbugs-submit-bounces@debbugs.gnu.org Thu May 15 21:48:57 2014 Received: (at submit) by debbugs.gnu.org; 16 May 2014 01:48:57 +0000 Received: from localhost ([127.0.0.1]:36503 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Wl7Ga-0000h1-Pe for submit@debbugs.gnu.org; Thu, 15 May 2014 21:48:57 -0400 Received: from eggs.gnu.org ([208.118.235.92]:43897) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Wl7GX-0000gn-VY for submit@debbugs.gnu.org; Thu, 15 May 2014 21:48:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wl7GN-00055K-UC for submit@debbugs.gnu.org; Thu, 15 May 2014 21:48:48 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:40649) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wl7GN-00055F-RT for submit@debbugs.gnu.org; Thu, 15 May 2014 21:48:43 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45603) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wl7GJ-0007GO-CZ for bug-grep@gnu.org; Thu, 15 May 2014 21:48:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wl7GE-00051s-WA for bug-grep@gnu.org; Thu, 15 May 2014 21:48:39 -0400 Received: from kiwi.cs.ucla.edu ([131.179.128.19]:48668) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wl7GE-00051o-Nc for bug-grep@gnu.org; Thu, 15 May 2014 21:48:34 -0400 Received: from kiwi.cs.ucla.edu (localhost.cs.ucla.edu [127.0.0.1]) by kiwi.cs.ucla.edu (8.14.5+Sun/8.14.5/UCLACS-6.0) with ESMTP id s4G1mXjg019587 for ; Thu, 15 May 2014 18:48:34 -0700 (PDT) Received: (from eggert@localhost) by kiwi.cs.ucla.edu (8.14.5+Sun/8.14.5/Submit) id s4G1mX9e019586 for bug-grep@gnu.org; Thu, 15 May 2014 18:48:33 -0700 (PDT) Message-Id: <201405160148.s4G1mX9e019586@kiwi.cs.ucla.edu> From: Paul Eggert Date: Thu, 15 May 2014 18:46:51 -0700 Subject: [PATCH] grep: port mb_next_wc to RHEL 6.5 x86-64 To: bug-grep@gnu.org X-detected-operating-system: by eggs.gnu.org: Solaris 10 X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.0 (----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: -4.0 (----) * src/searchutils.c (mb_next_wc): Work around glibc bug 16950; see: https://sourceware.org/bugzilla/show_bug.cgi?id=16950 This bug was masked in the other GNU/Linux tests I made. It was exposed on RHEL 6.5 x86-64, where the compiler (GCC Red Hat 4.4.7-4) happened to use temporaries in a different way. Also see recent changes to the Gnulib documentation in this area: http://lists.gnu.org/archive/html/bug-gnulib/2014-05/msg00013.html --- src/searchutils.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/searchutils.c b/src/searchutils.c index 5eb9a12..18dd584 100644 --- a/src/searchutils.c +++ b/src/searchutils.c @@ -285,5 +285,6 @@ mb_next_wc (char const *cur, char const *end) { wchar_t wc; mbstate_t mbs = { 0 }; - return mbrtowc (&wc, cur, end - cur, &mbs) < (size_t) -2 ? wc : WEOF; + return (end - cur != 0 && mbrtowc (&wc, cur, end - cur, &mbs) < (size_t) -2 + ? wc : WEOF); } -- 1.9.0 From debbugs-submit-bounces@debbugs.gnu.org Thu May 15 21:50:31 2014 Received: (at control) by debbugs.gnu.org; 16 May 2014 01:50:31 +0000 Received: from localhost ([127.0.0.1]:36508 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Wl7I6-0000k1-C2 for submit@debbugs.gnu.org; Thu, 15 May 2014 21:50:30 -0400 Received: from smtp.cs.ucla.edu ([131.179.128.62]:50796) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Wl7I2-0000jn-OJ for control@debbugs.gnu.org; Thu, 15 May 2014 21:50:27 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by smtp.cs.ucla.edu (Postfix) with ESMTP id 1B886A6007F for ; Thu, 15 May 2014 18:50:21 -0700 (PDT) X-Virus-Scanned: amavisd-new at smtp.cs.ucla.edu Received: from smtp.cs.ucla.edu ([127.0.0.1]) by localhost (smtp.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id njaZv8FHwNfZ for ; Thu, 15 May 2014 18:50:12 -0700 (PDT) Received: from [192.168.1.9] (pool-108-0-233-62.lsanca.fios.verizon.net [108.0.233.62]) by smtp.cs.ucla.edu (Postfix) with ESMTPSA id 9B8ECA60073 for ; Thu, 15 May 2014 18:50:12 -0700 (PDT) Message-ID: <53756ECB.8@cs.ucla.edu> Date: Thu, 15 May 2014 18:50:03 -0700 From: Paul Eggert Organization: UCLA Computer Science Department User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: control@debbugs.gnu.org Subject: 17506 is fixed Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -3.0 (---) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: -3.0 (---) close 17506 From debbugs-submit-bounces@debbugs.gnu.org Sat May 17 02:08:42 2014 Received: (at 17506) by debbugs.gnu.org; 17 May 2014 06:08:43 +0000 Received: from localhost ([127.0.0.1]:51091 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1WlXnW-0008HF-62 for submit@debbugs.gnu.org; Sat, 17 May 2014 02:08:42 -0400 Received: from smtp.cs.ucla.edu ([131.179.128.62]:35569) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1WlXnU-0008Gy-87 for 17506@debbugs.gnu.org; Sat, 17 May 2014 02:08:40 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by smtp.cs.ucla.edu (Postfix) with ESMTP id C7932A60001 for <17506@debbugs.gnu.org>; Fri, 16 May 2014 23:08:34 -0700 (PDT) X-Virus-Scanned: amavisd-new at smtp.cs.ucla.edu Received: from smtp.cs.ucla.edu ([127.0.0.1]) by localhost (smtp.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id SeKJ4+tgJCyX for <17506@debbugs.gnu.org>; Fri, 16 May 2014 23:08:30 -0700 (PDT) Received: from [192.168.1.9] (pool-108-0-233-62.lsanca.fios.verizon.net [108.0.233.62]) by smtp.cs.ucla.edu (Postfix) with ESMTPSA id 238F5A60096 for <17506@debbugs.gnu.org>; Fri, 16 May 2014 23:08:30 -0700 (PDT) Message-ID: <5376FCDD.3030100@cs.ucla.edu> Date: Fri, 16 May 2014 23:08:29 -0700 From: Paul Eggert Organization: UCLA Computer Science Department User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: 17506@debbugs.gnu.org Subject: Re: [PATCH] grep: port mb_next_wc to RHEL 6.5 x86-64 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -3.0 (---) X-Debbugs-Envelope-To: 17506 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: -3.0 (---) By the way, I verified that this patch is not needed if grep updates to the latest version of gnulib, because of this gnulib fix: http://git.savannah.gnu.org/cgit/gnulib.git/commit/?id=2a045bc38f853c02f682c710b8d69bd465719b26 So, after grep syncs to the latest gnulib, this patch should be reverted. From unknown Mon Jun 23 13:11:13 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: Did not alter fixed versions and reopened. Date: Sat, 17 May 2014 06:12:01 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # Did not alter fixed versions and reopened. thanks # This fakemail brought to you by your local debbugs # administrator From debbugs-submit-bounces@debbugs.gnu.org Sat May 17 02:11:15 2014 Received: (at control) by debbugs.gnu.org; 17 May 2014 06:11:15 +0000 Received: from localhost ([127.0.0.1]:51095 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1WlXpz-0008Mp-47 for submit@debbugs.gnu.org; Sat, 17 May 2014 02:11:15 -0400 Received: from smtp.cs.ucla.edu ([131.179.128.62]:35657) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1WlXpw-0008MX-3j for control@debbugs.gnu.org; Sat, 17 May 2014 02:11:13 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by smtp.cs.ucla.edu (Postfix) with ESMTP id ACEAEA60096 for ; Fri, 16 May 2014 23:11:06 -0700 (PDT) X-Virus-Scanned: amavisd-new at smtp.cs.ucla.edu Received: from smtp.cs.ucla.edu ([127.0.0.1]) by localhost (smtp.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Ai2TgclhmmUo for ; Fri, 16 May 2014 23:10:58 -0700 (PDT) Received: from [192.168.1.9] (pool-108-0-233-62.lsanca.fios.verizon.net [108.0.233.62]) by smtp.cs.ucla.edu (Postfix) with ESMTPSA id 33CBDA60001 for ; Fri, 16 May 2014 23:10:58 -0700 (PDT) Message-ID: <5376FD71.5030807@cs.ucla.edu> Date: Fri, 16 May 2014 23:10:57 -0700 From: Paul Eggert Organization: UCLA Computer Science Department User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: control@debbugs.gnu.org Subject: 17506 needs cleanup eventually Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -3.0 (---) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: -3.0 (---) reopen 17506 severity 17506 minor tags 17506 + easy fixed From debbugs-submit-bounces@debbugs.gnu.org Fri May 23 23:23:48 2014 Received: (at 17506) by debbugs.gnu.org; 24 May 2014 03:23:48 +0000 Received: from localhost ([127.0.0.1]:58464 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Wo2Ym-0000zV-0j for submit@debbugs.gnu.org; Fri, 23 May 2014 23:23:48 -0400 Received: from mail-wi0-f182.google.com ([209.85.212.182]:62432) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Wo2Yj-0000zD-BN for 17506@debbugs.gnu.org; Fri, 23 May 2014 23:23:46 -0400 Received: by mail-wi0-f182.google.com with SMTP id r20so1736174wiv.3 for <17506@debbugs.gnu.org>; Fri, 23 May 2014 20:23:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=I829tCzyKPI1i3iHl4xtsyiI96BN3i5VwqOB6N1rkXA=; b=I7ThIrl1hV4Mj6lEd7t3UR9hN2qwfUx9UYETlrsyFI5t+xBAVsqNyHATQuh66UQW0m Y3ySXZspLFk4Cp+IT8F3y8ta9OTKhMuV/mctV+AA2wy5ydzBNSLf0SRIdXhVJ3MhRSoP g/tFolFv/AWh15uG68BCzNiEy7FDVwetuzoUx8y5Nb8MSVyB32hQCqaJpbygKjF2bdlj z/olMY1OSewPYLKuuhqY8CDpJ+7WzSYHBw9OxH61204DMOYYmUaDeCkrEJzZArjs7b7K tH4Hk94FNV0wcehEVjpV8HFu3wb5jhAqbpXzEk9gGUOsqYAUW6UaVIcaVYMxrxhFbe2E fqPQ== X-Received: by 10.194.175.70 with SMTP id by6mr8600844wjc.3.1400901819563; Fri, 23 May 2014 20:23:39 -0700 (PDT) MIME-Version: 1.0 Received: by 10.194.81.102 with HTTP; Fri, 23 May 2014 20:23:14 -0700 (PDT) In-Reply-To: <5376FCDD.3030100@cs.ucla.edu> References: <201405160148.s4G1mX9e019586@kiwi.cs.ucla.edu> <5376FCDD.3030100@cs.ucla.edu> From: Jim Meyering Date: Fri, 23 May 2014 20:23:14 -0700 X-Google-Sender-Auth: d7PwPpg8lf2XO-8ibOL0_WT2h0I Message-ID: Subject: Re: bug#17506: [PATCH] grep: port mb_next_wc to RHEL 6.5 x86-64 To: Paul Eggert Content-Type: multipart/mixed; boundary=089e013d175a52391204fa1cdfe5 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 17506 Cc: 17506@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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 (/) --089e013d175a52391204fa1cdfe5 Content-Type: text/plain; charset=ISO-8859-1 On Fri, May 16, 2014 at 11:08 PM, Paul Eggert wrote: > By the way, I verified that this patch is not needed if grep updates to the > latest version of gnulib, because of this gnulib fix: > > http://git.savannah.gnu.org/cgit/gnulib.git/commit/?id=2a045bc38f853c02f682c710b8d69bd465719b26 > > So, after grep syncs to the latest gnulib, this patch should be reverted. Thanks. I've done that. First, update to latest gnulib, then revert the now-unnecessary commit: --089e013d175a52391204fa1cdfe5 Content-Type: application/octet-stream; name="0001-gnulib-update-for-mbrlen-mbrtowc-empty-input-bug-fix.patch" Content-Disposition: attachment; filename="0001-gnulib-update-for-mbrlen-mbrtowc-empty-input-bug-fix.patch" Content-Transfer-Encoding: base64 X-Attachment-Id: f_hvkcq6jh0 RnJvbSA0MzZiNjY5NTQ3M2NlZjY1MTJiNmE1ZTc5NjFiNDQzM2U1OTlmNzlmIE1vbiBTZXAgMTcg MDA6MDA6MDAgMjAwMQpGcm9tOiBKaW0gTWV5ZXJpbmcgPG1leWVyaW5nQGZiLmNvbT4KRGF0ZTog RnJpLCAyMyBNYXkgMjAxNCAyMDoxMjoyNSAtMDcwMApTdWJqZWN0OiBbUEFUQ0ggMS8yXSBnbnVs aWI6IHVwZGF0ZSwgZm9yIG1icmxlbi9tYnJ0b3djIGVtcHR5IGlucHV0IGJ1ZyBmaXgKCi0tLQog Z251bGliIHwgMiArLQogMSBmaWxlIGNoYW5nZWQsIDEgaW5zZXJ0aW9uKCspLCAxIGRlbGV0aW9u KC0pCgpkaWZmIC0tZ2l0IGEvZ251bGliIGIvZ251bGliCmluZGV4IGMyZTgwYjcuLjk4Y2EyYzAg MTYwMDAwCi0tLSBhL2dudWxpYgorKysgYi9nbnVsaWIKQEAgLTEgKzEgQEAKLVN1YnByb2plY3Qg Y29tbWl0IGMyZTgwYjc1YWFlNGM3ZWNlZWZhMjIyODFiMmY1ZDRmM2E0MTdmMDYKK1N1YnByb2pl Y3QgY29tbWl0IDk4Y2EyYzA2M2NmZTAxOWI2NzNmZDBjZTgxNDQ4YzkxOWU5Yzk4OWMKLS0gCjIu MC4wLnJjMwoK --089e013d175a52391204fa1cdfe5 Content-Type: application/octet-stream; name="0002-maint-revert-grep-port-mb_next_wc-to-RHEL-6.5-x86-64.patch" Content-Disposition: attachment; filename="0002-maint-revert-grep-port-mb_next_wc-to-RHEL-6.5-x86-64.patch" Content-Transfer-Encoding: base64 X-Attachment-Id: f_hvkcqc5x1 RnJvbSA4NzlkODZlNjI0MmVhZTY4OGY5ZTcyZDQyYjIzMDM0OGQxYzkzYThmIE1vbiBTZXAgMTcg MDA6MDA6MDAgMjAwMQpGcm9tOiBKaW0gTWV5ZXJpbmcgPG1leWVyaW5nQGZiLmNvbT4KRGF0ZTog RnJpLCAyMyBNYXkgMjAxNCAyMDoxNDowNyAtMDcwMApTdWJqZWN0OiBbUEFUQ0ggMi8yXSBtYWlu dDogcmV2ZXJ0ICJncmVwOiBwb3J0IG1iX25leHRfd2MgdG8gUkhFTCA2LjUgeDg2LTY0IgoKVGhp cyByZXZlcnRzIGNvbW1pdCB2Mi4xOC0xNDgtZ2E2YWU2OGQuCk5vdyB0aGF0IHdlIGhhdmUgZ251 bGliIGNoYW5nZSB2MC4xLTEzMS1nMmEwNDViYywgIm1icmxlbiwgbWJydG93YzoKZml4IGJ1ZyB3 aXRoIGVtcHR5IGlucHV0IiwgdGhpcyB3b3JrLWFyb3VuZCBpcyBubyBsb25nZXIgbmVlZGVkLgot LS0KIHNyYy9zZWFyY2h1dGlscy5jIHwgMyArLS0KIDEgZmlsZSBjaGFuZ2VkLCAxIGluc2VydGlv bigrKSwgMiBkZWxldGlvbnMoLSkKCmRpZmYgLS1naXQgYS9zcmMvc2VhcmNodXRpbHMuYyBiL3Ny Yy9zZWFyY2h1dGlscy5jCmluZGV4IDE4ZGQ1ODQuLjVlYjlhMTIgMTAwNjQ0Ci0tLSBhL3NyYy9z ZWFyY2h1dGlscy5jCisrKyBiL3NyYy9zZWFyY2h1dGlscy5jCkBAIC0yODUsNiArMjg1LDUgQEAg bWJfbmV4dF93YyAoY2hhciBjb25zdCAqY3VyLCBjaGFyIGNvbnN0ICplbmQpCiB7CiAgIHdjaGFy X3Qgd2M7CiAgIG1ic3RhdGVfdCBtYnMgPSB7IDAgfTsKLSAgcmV0dXJuIChlbmQgLSBjdXIgIT0g MCAmJiBtYnJ0b3djICgmd2MsIGN1ciwgZW5kIC0gY3VyLCAmbWJzKSA8IChzaXplX3QpIC0yCi0g ICAgICAgICAgPyB3YyA6IFdFT0YpOworICByZXR1cm4gbWJydG93YyAoJndjLCBjdXIsIGVuZCAt IGN1ciwgJm1icykgPCAoc2l6ZV90KSAtMiA/IHdjIDogV0VPRjsKIH0KLS0gCjIuMC4wLnJjMwoK --089e013d175a52391204fa1cdfe5-- From debbugs-submit-bounces@debbugs.gnu.org Sat May 24 00:34:50 2014 Received: (at control) by debbugs.gnu.org; 24 May 2014 04:34:50 +0000 Received: from localhost ([127.0.0.1]:58490 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Wo3fV-0003D2-UL for submit@debbugs.gnu.org; Sat, 24 May 2014 00:34:50 -0400 Received: from smtp.cs.ucla.edu ([131.179.128.62]:53678) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Wo3fT-0003Ch-U0 for control@debbugs.gnu.org; Sat, 24 May 2014 00:34:48 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by smtp.cs.ucla.edu (Postfix) with ESMTP id CC427A6001C for ; Fri, 23 May 2014 21:34:40 -0700 (PDT) X-Virus-Scanned: amavisd-new at smtp.cs.ucla.edu Received: from smtp.cs.ucla.edu ([127.0.0.1]) by localhost (smtp.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id hx2kL9EQuOdg for ; Fri, 23 May 2014 21:34:32 -0700 (PDT) Received: from [192.168.1.9] (pool-108-0-233-62.lsanca.fios.verizon.net [108.0.233.62]) by smtp.cs.ucla.edu (Postfix) with ESMTPSA id 48633A60030 for ; Fri, 23 May 2014 21:34:32 -0700 (PDT) Message-ID: <53802157.8090706@cs.ucla.edu> Date: Fri, 23 May 2014 21:34:31 -0700 From: Paul Eggert Organization: UCLA Computer Science Department User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: control@debbugs.gnu.org Subject: closing no-longer-relevant bug reports for 'grep' Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -3.0 (---) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: -3.0 (---) tag 17557 + notabug close 17557 tag 17548 + notabug close 17548 tag 17246 + notabug close 17246 close 17506 From debbugs-submit-bounces@debbugs.gnu.org Sat May 24 17:15:11 2014 Received: (at control) by debbugs.gnu.org; 24 May 2014 21:15:11 +0000 Received: from localhost ([127.0.0.1]:59413 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1WoJHb-0001CW-2x for submit@debbugs.gnu.org; Sat, 24 May 2014 17:15:11 -0400 Received: from smtp.cs.ucla.edu ([131.179.128.62]:54222) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1WoJHY-0001CG-I2 for control@debbugs.gnu.org; Sat, 24 May 2014 17:15:09 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by smtp.cs.ucla.edu (Postfix) with ESMTP id 287A8A6000B for ; Sat, 24 May 2014 14:15:03 -0700 (PDT) X-Virus-Scanned: amavisd-new at smtp.cs.ucla.edu Received: from smtp.cs.ucla.edu ([127.0.0.1]) by localhost (smtp.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id SVglZ4oVizv0 for ; Sat, 24 May 2014 14:14:54 -0700 (PDT) Received: from [192.168.1.9] (pool-108-0-233-62.lsanca.fios.verizon.net [108.0.233.62]) by smtp.cs.ucla.edu (Postfix) with ESMTPSA id A54AEA60002 for ; Sat, 24 May 2014 14:14:54 -0700 (PDT) Message-ID: <53810BCE.6010008@cs.ucla.edu> Date: Sat, 24 May 2014 14:14:54 -0700 From: Paul Eggert Organization: UCLA Computer Science Department User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: control@debbugs.gnu.org Subject: 17506 was not minor originally, only after first fix Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -3.0 (---) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: -3.0 (---) severity 17506 normal From unknown Mon Jun 23 13:11:13 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 22 Jun 2014 11:24:04 +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