From unknown Tue Jun 17 22:29:27 2025 X-Loop: help-debbugs@gnu.org Subject: bug#7126: 24.0.50; `dired-goto-file' fails when `dired' is passed a cons with absolute file names Resent-From: "Drew Adams" Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-To: owner@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 28 Sep 2010 21:56:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 7126 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: 7126@debbugs.gnu.org X-Debbugs-Original-To: Received: via spool by submit@debbugs.gnu.org id=B.128571090915598 (code B ref -1); Tue, 28 Sep 2010 21:56:02 +0000 Received: (at submit) by debbugs.gnu.org; 28 Sep 2010 21:55:09 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1P0i8i-00043X-Ad for submit@debbugs.gnu.org; Tue, 28 Sep 2010 17:55:08 -0400 Received: from eggs.gnu.org ([140.186.70.92]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1P0i8h-00043C-06 for submit@debbugs.gnu.org; Tue, 28 Sep 2010 17:55:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1P0iBR-0005tq-Cj for submit@debbugs.gnu.org; Tue, 28 Sep 2010 17:57:58 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-4.2 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_MED, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 Received: from lists.gnu.org ([199.232.76.165]:56300) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1P0iBR-0005tm-Ai for submit@debbugs.gnu.org; Tue, 28 Sep 2010 17:57:57 -0400 Received: from [140.186.70.92] (port=45243 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P0iBQ-0000u5-4c for bug-gnu-emacs@gnu.org; Tue, 28 Sep 2010 17:57:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1P0iBP-0005tL-0E for bug-gnu-emacs@gnu.org; Tue, 28 Sep 2010 17:57:56 -0400 Received: from rcsinet10.oracle.com ([148.87.113.121]:49909) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1P0iBO-0005tD-Qk for bug-gnu-emacs@gnu.org; Tue, 28 Sep 2010 17:57:54 -0400 Received: from rcsinet15.oracle.com (rcsinet15.oracle.com [148.87.113.117]) by rcsinet10.oracle.com (Switch-3.4.2/Switch-3.4.2) with ESMTP id o8SLvp9X008391 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 28 Sep 2010 21:57:52 GMT Received: from acsmt355.oracle.com (acsmt355.oracle.com [141.146.40.155]) by rcsinet15.oracle.com (Switch-3.4.2/Switch-3.4.1) with ESMTP id o8SIJUCI000841 for ; Tue, 28 Sep 2010 21:57:50 GMT Received: from abhmt021.oracle.com by acsmt353.oracle.com with ESMTP id 638580651285711042; Tue, 28 Sep 2010 14:57:22 -0700 Received: from dradamslap1 (/10.159.216.184) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Tue, 28 Sep 2010 14:57:22 -0700 From: "Drew Adams" Date: Tue, 28 Sep 2010 14:57:22 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 11 Thread-Index: ActfWCC4Vdwq3bVZSgq9KEYXfRPSBg== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5994 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Spam-Score: -5.1 (-----) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.3 (------) emacs -Q M-: (dired '("AAAAA" "c:/foo.c" "c:/bar.c")) This opens a Dired buffer named `AAAAA' with the same `default-directory' as before the `M-:'. The Dired buffer has two explicit entries, the files listed in the cons arg. These are absolute file names. This is a normal, advertised behavior of `dired': you can pass it a cons arg to have Dired list only explicit files. And the file names can be either relative or absolute. It works for remote files as well as local ones. Generally, it works quite well. There have been some oversights in the code in the past, but most have now been fixed. Now try `j c:/foo.c'. (`j' is `dired-goto-file'.) It fails. The reason it fails is that `dired-goto-file' looks only for the relative file name (e.g. `foo.c') with a space prepended. This is so even when you give it an absolute file name, such as `c:/foo.c'. This is important not just for interactive use but because `dired-goto-file' is a fundamental function. It is used all over the place in the Dired code. This bug therefore breaks lots of things. It makes it impossible for 3rd-party developers to really take advantage of the Dired feature of listing arbitrary files and directories. Dired functions should make no assumptions about the listed file and directory names. In particular, it should not assume that the files and dirs are in particular parent directories or that they are relative names. If a file name is absolute, then it must be respected. If it is relative, then it needs to be interpreted relative to the (sub)directory heading that precedes it (as usual). In GNU Emacs 24.0.50.1 (i386-mingw-nt5.1.2600) of 2010-09-20 on 3249CTO Windowing system distributor `Microsoft Corp.', version 5.1.2600 configured using `configure --with-gcc (4.4) --no-opt --cflags -Ic:/imagesupport/include' From unknown Tue Jun 17 22:29:27 2025 X-Loop: help-debbugs@gnu.org Subject: bug#7126: 24.0.50; [PATCH] `dired-goto-file' fails when `dired' is passed a cons with absolutefile names Resent-From: "Drew Adams" Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-To: owner@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 28 Sep 2010 23:53:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 7126 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: <7126@debbugs.gnu.org> Received: via spool by 7126-submit@debbugs.gnu.org id=B7126.128571792521305 (code B ref 7126); Tue, 28 Sep 2010 23:53:02 +0000 Received: (at 7126) by debbugs.gnu.org; 28 Sep 2010 23:52:05 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1P0jxs-0005Xa-QA for submit@debbugs.gnu.org; Tue, 28 Sep 2010 19:52:04 -0400 Received: from rcsinet10.oracle.com ([148.87.113.121]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1P0jxr-0005XC-3q for 7126@debbugs.gnu.org; Tue, 28 Sep 2010 19:52:03 -0400 Received: from acsinet15.oracle.com (acsinet15.oracle.com [141.146.126.227]) by rcsinet10.oracle.com (Switch-3.4.2/Switch-3.4.2) with ESMTP id o8SNspWK005838 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for <7126@debbugs.gnu.org>; Tue, 28 Sep 2010 23:54:53 GMT Received: from acsmt354.oracle.com (acsmt354.oracle.com [141.146.40.154]) by acsinet15.oracle.com (Switch-3.4.2/Switch-3.4.1) with ESMTP id o8SNsmBH032147 for <7126@debbugs.gnu.org>; Tue, 28 Sep 2010 23:54:48 GMT Received: from abhmt017.oracle.com by acsmt353.oracle.com with ESMTP id 645174451285718020; Tue, 28 Sep 2010 16:53:40 -0700 Received: from dradamslap1 (/10.159.216.184) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Tue, 28 Sep 2010 16:53:40 -0700 From: "Drew Adams" References: Date: Tue, 28 Sep 2010 16:53:40 -0700 Message-ID: <38695CE2A0AE429FA95C2BA34870B6F0@us.oracle.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_00CF_01CB5F2D.B491C450" X-Mailer: Microsoft Office Outlook 11 In-Reply-To: Thread-Index: ActfWCC4Vdwq3bVZSgq9KEYXfRPSBgAD/oWg X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5994 X-Spam-Score: -5.6 (-----) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -5.6 (-----) This is a multi-part message in MIME format. ------=_NextPart_000_00CF_01CB5F2D.B491C450 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit I think the attached patch takes care of it. But it would be good if others also tested it. ------=_NextPart_000_00CF_01CB5F2D.B491C450 Content-Type: application/octet-stream; name="dired-2010-09-28.patch" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="dired-2010-09-28.patch" diff -cw dired.el dired-patched-2010-09-28.el=0A= *** dired.el Tue Sep 28 16:42:22 2010=0A= --- dired-patched-2010-09-28.el Tue Sep 28 16:48:48 2010=0A= ***************=0A= *** 2480,2486 ****=0A= --- 2480,2498 ----=0A= (setq dir (or (file-name-directory file)=0A= (error "File name `%s' is not absolute" file)))=0A= (save-excursion=0A= + (goto-char (point-min))=0A= + (let ((search-string (replace-regexp-in-string "\^m" "\\^m" = file nil t)))=0A= + (setq search-string (replace-regexp-in-string "\\\\" "\\\\" = search-string nil t))=0A= + (while (and (not (eobp)) (not found))=0A= + (if (search-forward (concat " " search-string) nil 'NO-ERROR)=0A= + ;; Must move to filename since an (actually correct) = match could have been=0A= + ;; elsewhere on the line (e.g. "-" would match somewhere = in permission bits).=0A= + (setq found (dired-move-to-filename))=0A= + ;; If this isn't the right line, move forward to avoid = trying this line again.=0A= + (forward-line 1)))))=0A= + (unless found=0A= ;; The hair here is to get the result of dired-goto-subdir=0A= + (save-excursion=0A= ;; without really calling it if we don't have any subdirs.=0A= (if (if (string=3D dir (expand-file-name default-directory))=0A= (goto-char (point-min))=0A= ***************=0A= *** 2509,2515 ****=0A= (setq found (dired-move-to-filename))=0A= ;; If this isn't the right line, move forward to avoid=0A= ;; trying this line again.=0A= ! (forward-line 1))))))=0A= (and found=0A= ;; return value of point (i.e., FOUND):=0A= (goto-char found))))=0A= --- 2521,2527 ----=0A= (setq found (dired-move-to-filename))=0A= ;; If this isn't the right line, move forward to = avoid=0A= ;; trying this line again.=0A= ! (forward-line 1)))))))=0A= (and found=0A= ;; return value of point (i.e., FOUND):=0A= (goto-char found))))=0A= =0A= Diff finished. Tue Sep 28 16:49:01 2010=0A= ------=_NextPart_000_00CF_01CB5F2D.B491C450-- From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 28 23:46:25 2011 Received: (at control) by debbugs.gnu.org; 1 Mar 2011 04:46:25 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1PuHTd-0000vU-Am for submit@debbugs.gnu.org; Mon, 28 Feb 2011 23:46:25 -0500 Received: from fencepost.gnu.org ([140.186.70.10]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1PuHTa-0000vH-Vj for control@debbugs.gnu.org; Mon, 28 Feb 2011 23:46:23 -0500 Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1PuHTV-0000Tm-LG for control@debbugs.gnu.org; Mon, 28 Feb 2011 23:46:17 -0500 Date: Mon, 28 Feb 2011 23:46:17 -0500 Message-Id: Subject: control message for bug 7126 To: X-Mailer: mail (GNU Mailutils 2.1) From: Glenn Morris X-Spam-Score: -6.3 (------) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.3 (------) merge 5420 7126 From unknown Tue Jun 17 22:29:27 2025 X-Loop: help-debbugs@gnu.org Subject: bug#7126: 24.0.50; [PATCH] `dired-goto-file' fails when `dired' is passed a cons withabsolutefile names Resent-From: "Drew Adams" Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Wed, 07 Mar 2012 17:26:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 7126 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: <7126@debbugs.gnu.org> Received: via spool by 7126-submit@debbugs.gnu.org id=B7126.133114110621464 (code B ref 7126); Wed, 07 Mar 2012 17:26:01 +0000 Received: (at 7126) by debbugs.gnu.org; 7 Mar 2012 17:25:06 +0000 Received: from localhost ([127.0.0.1]:37815 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1S5Kbp-0005Ze-Kt for submit@debbugs.gnu.org; Wed, 07 Mar 2012 12:25:05 -0500 Received: from acsinet15.oracle.com ([141.146.126.227]:48206) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1S5Kbd-0005Z7-V8 for 7126@debbugs.gnu.org; Wed, 07 Mar 2012 12:24:55 -0500 Received: from acsinet22.oracle.com (acsinet22.oracle.com [141.146.126.238]) by acsinet15.oracle.com (Sentrion-MTA-4.2.2/Sentrion-MTA-4.2.2) with ESMTP id q27HNqfl015056 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for <7126@debbugs.gnu.org>; Wed, 7 Mar 2012 17:23:53 GMT Received: from acsmt357.oracle.com (acsmt357.oracle.com [141.146.40.157]) by acsinet22.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id q27HNp6I015186 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for <7126@debbugs.gnu.org>; Wed, 7 Mar 2012 17:23:52 GMT Received: from abhmt115.oracle.com (abhmt115.oracle.com [141.146.116.67]) by acsmt357.oracle.com (8.12.11.20060308/8.12.11) with ESMTP id q27HNpKc032656 for <7126@debbugs.gnu.org>; Wed, 7 Mar 2012 11:23:51 -0600 Received: from dradamslap1 (/130.35.179.10) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Wed, 07 Mar 2012 09:23:51 -0800 From: "Drew Adams" References: <38695CE2A0AE429FA95C2BA34870B6F0@us.oracle.com> Date: Wed, 7 Mar 2012 09:23:50 -0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 11 Thread-Index: ActfWCC4Vdwq3bVZSgq9KEYXfRPSBgAD/oWgZ0diBvA= In-Reply-To: <38695CE2A0AE429FA95C2BA34870B6F0@us.oracle.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 X-Source-IP: acsinet22.oracle.com [141.146.126.238] X-Auth-Type: Internal IP X-CT-RefId: str=0001.0A090202.4F5799A9.007E,ss=1,re=0.000,fgs=0 X-Spam-Score: -6.9 (------) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.9 (------) > I think the attached patch takes care of it. > But it would be good if others also tested it. ping. The bug is still there. Tested again with emacs -Q: In GNU Emacs 24.0.94.1 (i386-mingw-nt5.1.2600) of 2012-02-26 on MARVIN Windowing system distributor `Microsoft Corp.', version 5.1.2600 Configured using: `configure --with-gcc (4.6) --no-opt --enable-checking --cflags -ID:/devel/emacs/libs/libXpm-3.5.8/include -ID:/devel/emacs/libs/libXpm-3.5.8/src -ID:/devel/emacs/libs/libpng-dev_1.4.3-1/include -ID:/devel/emacs/libs/zlib-dev_1.2.5-2/include -ID:/devel/emacs/libs/giflib-4.1.4-1/include -ID:/devel/emacs/libs/jpeg-6b-4/include -ID:/devel/emacs/libs/tiff-3.8.2-1/include -ID:/devel/emacs/libs/gnutls-3.0.9/include' The patch I sent 1 1/2 years ago would now need to be updated per the introduction of `dired-switches-escape-p'. IOW, the same use of that function in the current save-excursion probably needs to also be added to the preliminary save-excursion in the patch. In any case - regardless of the patch, there has been NO response to this bug. From unknown Tue Jun 17 22:29:27 2025 X-Loop: help-debbugs@gnu.org Subject: bug#7126: 24.0.50; [PATCH] `dired-goto-file' fails when `dired' is passed a cons withabsolutefile names Resent-From: Chong Yidong Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 10 Mar 2012 05:52:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 7126 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: "Drew Adams" Cc: 7126@debbugs.gnu.org Received: via spool by 7126-submit@debbugs.gnu.org id=B7126.133135870830173 (code B ref 7126); Sat, 10 Mar 2012 05:52:01 +0000 Received: (at 7126) by debbugs.gnu.org; 10 Mar 2012 05:51:48 +0000 Received: from localhost ([127.0.0.1]:41638 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1S6FDX-0007qc-Lg for submit@debbugs.gnu.org; Sat, 10 Mar 2012 00:51:48 -0500 Received: from fencepost.gnu.org ([208.118.235.10]:44426) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1S6FDL-0007qK-Qb for 7126@debbugs.gnu.org; Sat, 10 Mar 2012 00:51:46 -0500 Received: from bb116-14-103-36.singnet.com.sg ([116.14.103.36]:54616 helo=ulysses) by fencepost.gnu.org with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1S6Eke-00045G-0w; Sat, 10 Mar 2012 00:21:56 -0500 From: Chong Yidong References: <38695CE2A0AE429FA95C2BA34870B6F0@us.oracle.com> Date: Sat, 10 Mar 2012 13:21:48 +0800 In-Reply-To: (Drew Adams's message of "Wed, 7 Mar 2012 09:23:50 -0800") Message-ID: <87obs5do9f.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.94 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -6.9 (------) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.9 (------) "Drew Adams" writes: > ping. The bug is still there. I've committed a more complete fix. Thanks. From debbugs-submit-bounces@debbugs.gnu.org Sat Mar 10 00:51:57 2012 Received: (at control) by debbugs.gnu.org; 10 Mar 2012 05:51:57 +0000 Received: from localhost ([127.0.0.1]:41640 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1S6FDg-0007qw-FN for submit@debbugs.gnu.org; Sat, 10 Mar 2012 00:51:57 -0500 Received: from fencepost.gnu.org ([208.118.235.10]:44428) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1S6FDV-0007qV-Gy for control@debbugs.gnu.org; Sat, 10 Mar 2012 00:51:54 -0500 Received: from bb116-14-103-36.singnet.com.sg ([116.14.103.36]:54617 helo=ulysses) by fencepost.gnu.org with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1S6Ekp-00045e-7n for control@debbugs.gnu.org; Sat, 10 Mar 2012 00:22:07 -0500 From: Chong Yidong To: control@debbugs.gnu.org Subject: close 7126 Date: Sat, 10 Mar 2012 13:22:00 +0800 Message-ID: <87zkbpav47.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -6.9 (------) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.9 (------) close 7126 thanks