From unknown Mon Aug 18 00:08:40 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#22248 <22248@debbugs.gnu.org> To: bug#22248 <22248@debbugs.gnu.org> Subject: Status: gnus-article-mode omits apostrophe from isearch string Reply-To: bug#22248 <22248@debbugs.gnu.org> Date: Mon, 18 Aug 2025 07:08:40 +0000 retitle 22248 gnus-article-mode omits apostrophe from isearch string reassign 22248 emacs,gnus submitter 22248 Juri Linkov severity 22248 normal tag 22248 fixed patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sat Dec 26 20:18:27 2015 Received: (at submit) by debbugs.gnu.org; 27 Dec 2015 01:18:28 +0000 Received: from localhost ([127.0.0.1]:42289 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aCzyd-0002S2-Nu for submit@debbugs.gnu.org; Sat, 26 Dec 2015 20:18:27 -0500 Received: from eggs.gnu.org ([208.118.235.92]:60644) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aCzyb-0002Ro-IU for submit@debbugs.gnu.org; Sat, 26 Dec 2015 20:18:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aCzyV-0001dl-GN for submit@debbugs.gnu.org; Sat, 26 Dec 2015 20:18:20 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.0 required=5.0 tests=BAYES_40 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:49952) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aCzyV-0001dh-DZ for submit@debbugs.gnu.org; Sat, 26 Dec 2015 20:18:19 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51615) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aCzyU-00058k-J8 for bug-gnu-emacs@gnu.org; Sat, 26 Dec 2015 20:18:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aCzyR-0001dX-CT for bug-gnu-emacs@gnu.org; Sat, 26 Dec 2015 20:18:18 -0500 Received: from sub3.mail.dreamhost.com ([69.163.253.7]:36680 helo=homiemail-a23.g.dreamhost.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aCzyR-0001dR-6o for bug-gnu-emacs@gnu.org; Sat, 26 Dec 2015 20:18:15 -0500 Received: from homiemail-a23.g.dreamhost.com (localhost [127.0.0.1]) by homiemail-a23.g.dreamhost.com (Postfix) with ESMTP id DFA514B006D for ; Sat, 26 Dec 2015 17:18:12 -0800 (PST) Received: from localhost.linkov.net (m83-191-222-227.cust.tele2.ee [83.191.222.227]) (Authenticated sender: jurta@jurta.org) by homiemail-a23.g.dreamhost.com (Postfix) with ESMTPA id 255354B0063 for ; Sat, 26 Dec 2015 17:18:11 -0800 (PST) From: Juri Linkov To: bug-gnu-emacs@gnu.org Subject: gnus-article-mode omits apostrophe from isearch string Organization: LINKOV.NET Date: Sun, 27 Dec 2015 02:28:05 +0200 Message-ID: <87h9j4g0p2.fsf@mail.linkov.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: submit 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: -5.0 (-----) Trying to put an expression like (setq var 'foo) into the isearch ring by moving point at its beginning and typing C-s C-w C-w C-w ... doesn't add apostrophe in Gnus because gnus-article-mode modifies syntax of ' to whitespace: (defvar gnus-article-mode-syntax-table (let ((table (copy-syntax-table text-mode-syntax-table))) ;; make M-. in article buffers work for `foo' strings (modify-syntax-entry ?' " " table) (modify-syntax-entry ?` " " table) and lax-whitespace search together with isearch-yank-word-or-char squeeze apostrophe in a sequence of space characters. One solution is to modify syntax of ' and ` in gnus-article-mode-syntax-table to syntax discussed in bug#22238, i.e. not whitespace and not part of a symbol, still allowing M-. in article buffers work for `foo' strings, and allowing isearch to search in other buffers the same string yanked to the search ring from Gnus. From debbugs-submit-bounces@debbugs.gnu.org Sun Feb 07 00:48:31 2016 Received: (at 22248) by debbugs.gnu.org; 7 Feb 2016 05:48:32 +0000 Received: from localhost ([127.0.0.1]:36294 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aSID1-0000ZK-Mg for submit@debbugs.gnu.org; Sun, 07 Feb 2016 00:48:31 -0500 Received: from hermes.netfonds.no ([80.91.224.195]:51207) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aSICz-0000ZC-Pk for 22248@debbugs.gnu.org; Sun, 07 Feb 2016 00:48:30 -0500 Received: from cpe-60-225-211-161.nsw.bigpond.net.au ([60.225.211.161] helo=mouse) by hermes.netfonds.no with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1aSICc-0005aN-5x; Sun, 07 Feb 2016 06:48:06 +0100 From: Lars Ingebrigtsen To: Juri Linkov Subject: Re: bug#22248: gnus-article-mode omits apostrophe from isearch string References: <87h9j4g0p2.fsf@mail.linkov.net> Date: Sun, 07 Feb 2016 16:48:01 +1100 In-Reply-To: <87h9j4g0p2.fsf@mail.linkov.net> (Juri Linkov's message of "Sun, 27 Dec 2015 02:28:05 +0200") Message-ID: <87d1s9cbqm.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.90 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-MailScanner-ID: 1aSICc-0005aN-5x X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1455428887.56386@Y4/PCxpitfHa0mKE3Q1+og X-Spam-Status: No X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 22248 Cc: 22248@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.0 (/) Juri Linkov writes: > Trying to put an expression like (setq var 'foo) into the isearch ring > by moving point at its beginning and typing C-s C-w C-w C-w ... > doesn't add apostrophe in Gnus because gnus-article-mode modifies > syntax of ' to whitespace: > > (defvar gnus-article-mode-syntax-table > (let ((table (copy-syntax-table text-mode-syntax-table))) > ;; make M-. in article buffers work for `foo' strings > (modify-syntax-entry ?' " " table) > (modify-syntax-entry ?` " " table) > > and lax-whitespace search together with isearch-yank-word-or-char > squeeze apostrophe in a sequence of space characters. > > One solution is to modify syntax of ' and ` in gnus-article-mode-syntax-table > to syntax discussed in bug#22238, i.e. not whitespace and not part > of a symbol, still allowing M-. in article buffers work for `foo' strings, > and allowing isearch to search in other buffers the same string yanked > to the search ring from Gnus. Sounds good. Could you supply a patch for doing that? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Thu Jan 26 17:32:06 2017 Received: (at 22248) by debbugs.gnu.org; 26 Jan 2017 22:32:06 +0000 Received: from localhost ([127.0.0.1]:46392 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cWsaI-00070Z-OK for submit@debbugs.gnu.org; Thu, 26 Jan 2017 17:32:06 -0500 Received: from hermes.netfonds.no ([80.91.224.195]:59561) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cWsaC-000701-Je for 22248@debbugs.gnu.org; Thu, 26 Jan 2017 17:32:00 -0500 Received: from 2.150.50.220.tmi.telenormobil.no ([2.150.50.220] helo=mouse) by hermes.netfonds.no with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1cWsa5-0004ND-WE; Thu, 26 Jan 2017 23:31:55 +0100 From: Lars Ingebrigtsen To: Juri Linkov Subject: Re: bug#22248: gnus-article-mode omits apostrophe from isearch string In-Reply-To: <87d1s9cbqm.fsf@gnus.org> (Lars Ingebrigtsen's message of "Sun, 07 Feb 2016 16:48:01 +1100") Date: Thu, 26 Jan 2017 23:26:18 +0100 Message-ID: <87poj9a25x.fsf@gnus.org> References: <87h9j4g0p2.fsf@mail.linkov.net> <87d1s9cbqm.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 22248 Cc: 22248@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.0 (/) Lars Ingebrigtsen writes: > Juri Linkov writes: > >> Trying to put an expression like (setq var 'foo) into the isearch ring >> by moving point at its beginning and typing C-s C-w C-w C-w ... >> doesn't add apostrophe in Gnus because gnus-article-mode modifies >> syntax of ' to whitespace: >> >> (defvar gnus-article-mode-syntax-table >> (let ((table (copy-syntax-table text-mode-syntax-table))) >> ;; make M-. in article buffers work for `foo' strings >> (modify-syntax-entry ?' " " table) >> (modify-syntax-entry ?` " " table) >> >> and lax-whitespace search together with isearch-yank-word-or-char >> squeeze apostrophe in a sequence of space characters. >> >> One solution is to modify syntax of ' and ` in gnus-article-mode-syntax-table >> to syntax discussed in bug#22238, i.e. not whitespace and not part >> of a symbol, still allowing M-. in article buffers work for `foo' strings, >> and allowing isearch to search in other buffers the same string yanked >> to the search ring from Gnus. > > Sounds good. Could you supply a patch for doing that? Did you have a look at doing this? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Sat Jan 28 19:51:00 2017 Received: (at 22248) by debbugs.gnu.org; 29 Jan 2017 00:51:00 +0000 Received: from localhost ([127.0.0.1]:49561 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cXdhr-0004vN-QZ for submit@debbugs.gnu.org; Sat, 28 Jan 2017 19:50:59 -0500 Received: from sub3.mail.dreamhost.com ([69.163.253.7]:45200 helo=homiemail-a23.g.dreamhost.com) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cXdhp-0004v5-V8 for 22248@debbugs.gnu.org; Sat, 28 Jan 2017 19:50:58 -0500 Received: from homiemail-a23.g.dreamhost.com (localhost [127.0.0.1]) by homiemail-a23.g.dreamhost.com (Postfix) with ESMTP id 6B4514B006F; Sat, 28 Jan 2017 16:50:55 -0800 (PST) Received: from localhost.linkov.net (m213-100-238-78.cust.tele2.ee [213.100.238.78]) (Authenticated sender: jurta@jurta.org) by homiemail-a23.g.dreamhost.com (Postfix) with ESMTPA id 99CB84B0063; Sat, 28 Jan 2017 16:50:54 -0800 (PST) From: Juri Linkov To: Lars Ingebrigtsen Subject: Re: bug#22248: gnus-article-mode omits apostrophe from isearch string Organization: LINKOV.NET References: <87h9j4g0p2.fsf@mail.linkov.net> <87d1s9cbqm.fsf@gnus.org> <87poj9a25x.fsf@gnus.org> Date: Sun, 29 Jan 2017 02:18:42 +0200 In-Reply-To: <87poj9a25x.fsf@gnus.org> (Lars Ingebrigtsen's message of "Thu, 26 Jan 2017 23:26:18 +0100") Message-ID: <87a8aa4uwt.fsf@mail.linkov.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 3.2 (+++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: >>> Trying to put an expression like (setq var 'foo) into the isearch ring >>> by moving point at its beginning and typing C-s C-w C-w C-w ... >>> doesn't add apostrophe in Gnus because gnus-article-mode modifies >>> syntax of ' to whitespace: >>> >>> (defvar gnus-article-mode-syntax-table >>> (let ((table (copy-syntax-table text-mode-syntax-table))) >>> ;; make M-. in article buffers work for `foo' strings >>> (modify-syntax-entry ?' " " table) >>> (modify-syntax-entry ?` " " table) >>> >>> and lax-whitespace search together with isearch-yank-word-or-char >>> squeeze apostrophe in a sequence of space characters. >>> >>> One solution is to modify syntax of ' and ` in gnus-article-mode-syntax-table >>> to syntax discussed in bug#22238, i.e. not whitespace and not part >>> of a symbol, still allowing M-. in article buffers work for `foo' strings, >>> and allowing isearch to search in other buffers the same string yanked >>> to the search ring from Gnus. >> >> Sounds good. Could you supply a patch for doing that? > > Did you have a look at doing this? [...] Content analysis details: (3.2 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.5 RCVD_IN_SORBS_SPAM RBL: SORBS: sender is a spam source [69.163.253.7 listed in dnsbl.sorbs.net] -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at http://www.dnswl.org/, no trust [69.163.253.7 listed in list.dnswl.org] 0.0 RCVD_IN_MSPIKE_L5 RBL: Very bad reputation (-5) [69.163.253.7 listed in bl.mailspike.net] 2.7 RCVD_IN_PSBL RBL: Received via a relay in PSBL [69.163.253.7 listed in psbl.surriel.com] 0.0 RCVD_IN_MSPIKE_BL Mailspike blacklisted X-Debbugs-Envelope-To: 22248 Cc: 22248@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: 3.2 (+++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: >>> Trying to put an expression like (setq var 'foo) into the isearch ring >>> by moving point at its beginning and typing C-s C-w C-w C-w ... >>> doesn't add apostrophe in Gnus because gnus-article-mode modifies >>> syntax of ' to whitespace: >>> >>> (defvar gnus-article-mode-syntax-table >>> (let ((table (copy-syntax-table text-mode-syntax-table))) >>> ;; make M-. in article buffers work for `foo' strings >>> (modify-syntax-entry ?' " " table) >>> (modify-syntax-entry ?` " " table) >>> >>> and lax-whitespace search together with isearch-yank-word-or-char >>> squeeze apostrophe in a sequence of space characters. >>> >>> One solution is to modify syntax of ' and ` in gnus-article-mode-syntax-table >>> to syntax discussed in bug#22238, i.e. not whitespace and not part >>> of a symbol, still allowing M-. in article buffers work for `foo' strings, >>> and allowing isearch to search in other buffers the same string yanked >>> to the search ring from Gnus. >> >> Sounds good. Could you supply a patch for doing that? > > Did you have a look at doing this? [...] Content analysis details: (3.2 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.5 RCVD_IN_SORBS_SPAM RBL: SORBS: sender is a spam source [69.163.253.7 listed in dnsbl.sorbs.net] 0.0 RCVD_IN_MSPIKE_L5 RBL: Very bad reputation (-5) [69.163.253.7 listed in bl.mailspike.net] 2.7 RCVD_IN_PSBL RBL: Received via a relay in PSBL [69.163.253.7 listed in psbl.surriel.com] -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at http://www.dnswl.org/, no trust [69.163.253.7 listed in list.dnswl.org] 0.0 RCVD_IN_MSPIKE_BL Mailspike blacklisted >>> Trying to put an expression like (setq var 'foo) into the isearch ring >>> by moving point at its beginning and typing C-s C-w C-w C-w ... >>> doesn't add apostrophe in Gnus because gnus-article-mode modifies >>> syntax of ' to whitespace: >>> >>> (defvar gnus-article-mode-syntax-table >>> (let ((table (copy-syntax-table text-mode-syntax-table))) >>> ;; make M-. in article buffers work for `foo' strings >>> (modify-syntax-entry ?' " " table) >>> (modify-syntax-entry ?` " " table) >>> >>> and lax-whitespace search together with isearch-yank-word-or-char >>> squeeze apostrophe in a sequence of space characters. >>> >>> One solution is to modify syntax of ' and ` in gnus-article-mode-syntax-table >>> to syntax discussed in bug#22238, i.e. not whitespace and not part >>> of a symbol, still allowing M-. in article buffers work for `foo' strings, >>> and allowing isearch to search in other buffers the same string yanked >>> to the search ring from Gnus. >> >> Sounds good. Could you supply a patch for doing that? > > Did you have a look at doing this? Looks like the patch could be as simple as this diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el index e1af859..12fa97c 100644 --- a/lisp/gnus/gnus-art.el +++ b/lisp/gnus/gnus-art.el @@ -1708,9 +1708,10 @@ (defvar gnus-article-mode-syntax-table ;; (modify-syntax-entry ?- "w" table) (modify-syntax-entry ?> ")<" table) (modify-syntax-entry ?< "(>" table) - ;; make M-. in article buffers work for `foo' strings - (modify-syntax-entry ?' " " table) - (modify-syntax-entry ?` " " table) + ;; make M-. in article buffers work for `foo' strings, + ;; and still allow C-s C-w to yank ' to the search ring + (modify-syntax-entry ?' "'" table) + (modify-syntax-entry ?` "'" table) table) "Syntax table used in article mode buffers. Initialized from `text-mode-syntax-table'.") From debbugs-submit-bounces@debbugs.gnu.org Tue Jan 31 11:36:29 2017 Received: (at 22248) by debbugs.gnu.org; 31 Jan 2017 16:36:29 +0000 Received: from localhost ([127.0.0.1]:52433 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cYbPx-0007fF-FB for submit@debbugs.gnu.org; Tue, 31 Jan 2017 11:36:29 -0500 Received: from hermes.netfonds.no ([80.91.224.195]:39447) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cYbPv-0007f5-U4 for 22248@debbugs.gnu.org; Tue, 31 Jan 2017 11:36:28 -0500 Received: from cm-84.215.1.64.getinternet.no ([84.215.1.64] helo=stories) by hermes.netfonds.no with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2) (envelope-from ) id 1cYbPo-0001oy-DW; Tue, 31 Jan 2017 17:36:26 +0100 From: Lars Ingebrigtsen To: Juri Linkov Subject: Re: bug#22248: gnus-article-mode omits apostrophe from isearch string References: <87h9j4g0p2.fsf@mail.linkov.net> <87d1s9cbqm.fsf@gnus.org> <87poj9a25x.fsf@gnus.org> <87a8aa4uwt.fsf@mail.linkov.net> Date: Tue, 31 Jan 2017 17:36:20 +0100 In-Reply-To: <87a8aa4uwt.fsf@mail.linkov.net> (Juri Linkov's message of "Sun, 29 Jan 2017 02:18:42 +0200") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 22248 Cc: 22248@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.0 (/) Juri Linkov writes: > Looks like the patch could be as simple as this Thanks; applied. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Tue Jan 31 11:36:48 2017 Received: (at control) by debbugs.gnu.org; 31 Jan 2017 16:36:48 +0000 Received: from localhost ([127.0.0.1]:52436 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cYbQG-0007fs-MB for submit@debbugs.gnu.org; Tue, 31 Jan 2017 11:36:48 -0500 Received: from hermes.netfonds.no ([80.91.224.195]:39460) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cYbQF-0007fj-Lr for control@debbugs.gnu.org; Tue, 31 Jan 2017 11:36:47 -0500 Received: from cm-84.215.1.64.getinternet.no ([84.215.1.64] helo=stories) by hermes.netfonds.no with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2) (envelope-from ) id 1cYbQD-0003Xr-Jh for control@debbugs.gnu.org; Tue, 31 Jan 2017 17:36:47 +0100 Date: Tue, 31 Jan 2017 17:36:45 +0100 Message-Id: To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #22248 X-Spam-Score: 0.0 (/) 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.0 (/) tags 22248 fixed close 22248 From unknown Mon Aug 18 00:08:40 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 01 Mar 2017 12: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