From unknown Sat Jun 21 03:29:26 2025 X-Loop: don@donarmstrong.com Subject: bug#1282: Improvement to gud.el error message Reply-To: Michael Ernst , 1282@debbugs.gnu.org Resent-From: Michael Ernst Resent-To: bug-submit-list@lists.donarmstrong.com Resent-CC: Emacs Bugs Resent-Date: Fri, 31 Oct 2008 05:05:04 +0000 Resent-Message-ID: Resent-Sender: don@donarmstrong.com X-Emacs-PR-Message: report 1282 X-Emacs-PR-Package: emacs X-Emacs-PR-Keywords: Received: via spool by submit@emacsbugs.donarmstrong.com id=B.122542894929842 (code B ref -1); Fri, 31 Oct 2008 05:05:04 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rzlab.ucr.edu X-Spam-Level: X-Spam-Status: No, score=-8.0 required=4.0 tests=BAYES_00,MURPHY_DRUGS_REL8, RCVD_IN_DNSWL_MED autolearn=ham version=3.2.3-bugs.debian.org_2005_01_02 Received: (at submit) by emacsbugs.donarmstrong.com; 31 Oct 2008 04:55:49 +0000 Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id m9V4tjin029836 for ; Thu, 30 Oct 2008 21:55:46 -0700 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Kvm2z-0003gr-1q for bug-gnu-emacs@gnu.org; Fri, 31 Oct 2008 00:55:45 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Kvm2v-0003fk-DX for bug-gnu-emacs@gnu.org; Fri, 31 Oct 2008 00:55:42 -0400 Received: from [199.232.76.173] (port=59293 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Kvm2v-0003fh-BR for bug-gnu-emacs@gnu.org; Fri, 31 Oct 2008 00:55:41 -0400 Received: from hera.mpi-sb.mpg.de ([139.19.1.49]:35503) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Kvm2v-0003GV-3e for bug-gnu-emacs@gnu.org; Fri, 31 Oct 2008 00:55:41 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mpi-sb.mpg.de; s=mail200803; h=MIME-Version:Content-Type: Content-Transfer-Encoding:Message-ID:Date:From:To:Subject; bh=bN woeX8a0CixOKUPsthlIO7wwKCcNxVSah01ES2Rww8=; b=BZbZtIg7nH5yBusqCm C8Vf6cgf+2GlxE2yL3/kZLx00/T0U+FCVEV3hP6GsztI7ZjWING0gvkMWSggF+pZ BbQvAP9/X+D9pwUmyExPxacuPltANWN09FbAkKejubO0QWGMeR7IJJ00X73Yudz5 TN5RRcnOYVsmDUmj9oTlSYvL0= Received: from maildist0.mpi-sb.mpg.de ([139.19.3.135]:40710) by hera.mpi-sb.mpg.de (envelope-from ) with esmtp (Exim 4.69) id 1Kvm28-0004EO-1x; Fri, 31 Oct 2008 05:55:04 +0100 Received: from swsao0713.ds.mpi-sws.mpg.de ([139.19.131.44]:58737 helo=swsmde.ds.mpi-sws.mpg.de) by maildist0.mpi-sb.mpg.de with esmtp (Exim 4.63) (envelope-from ) id 1Kvm27-0000SP-Mp; Fri, 31 Oct 2008 05:54:51 +0100 Received: from mernst by swsmde.ds.mpi-sws.mpg.de with local (Exim 4.63) (envelope-from ) id 1Kvm27-00063F-LK; Fri, 31 Oct 2008 05:54:51 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18698.36759.322749.276498@swsmde.ds.mpi-sws.mpg.de> Date: Fri, 31 Oct 2008 05:54:47 +0100 From: Michael Ernst To: bug-gnu-emacs@gnu.org X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) This patch improves an error message in gud.el, by indicating the name of the file that cannot be found. -Michael Ernst diff -u -b -r --exclude=CVS --exclude=.bzr --exclude=.hg --exclude=.hgtags --exclude=.svn /DS/home-0/mernst/.synchronized/gud.el-orig /DS/home-0/mernst/.synchronized/gud.el-patched --- /DS/home-0/mernst/.synchronized/gud.el-orig 2008-10-25 11:28:35.918786020 +0200 +++ /DS/home-0/mernst/.synchronized/gud.el-patched 2008-10-25 11:28:12.635390729 +0200 @@ -2223,8 +2223,9 @@ (if (< n gud-jdb-lowest-stack-level) (progn (setq gud-jdb-lowest-stack-level n) t))) t) + (let ((filename (match-string 2 gud-marker-acc))) (if (setq file-found - (gud-jdb-find-source (match-string 2 gud-marker-acc))) + (gud-jdb-find-source filename)) (setq gud-last-frame (cons file-found (string-to-number @@ -2233,7 +2234,7 @@ (if (string-match "[.,]" numstr) (replace-match "" nil nil numstr) numstr))))) - (message "Could not find source file."))) + (message "Could not find source file %s" filename)))) ;; Set the accumulator to the remaining text. (setq gud-marker-acc (substring gud-marker-acc (match-end 0)))) Diff finished. Fri Oct 31 05:54:35 2008 From unknown Sat Jun 21 03:29:26 2025 X-Loop: don@donarmstrong.com Subject: bug#1282: Improvement to gud.el error message Reply-To: Nick Roberts , 1282@debbugs.gnu.org Resent-From: Nick Roberts Resent-To: bug-submit-list@lists.donarmstrong.com Resent-CC: Emacs Bugs Resent-Date: Sat, 01 Nov 2008 09:00:02 +0000 Resent-Message-ID: Resent-Sender: don@donarmstrong.com X-Emacs-PR-Message: report 1282 X-Emacs-PR-Package: emacs X-Emacs-PR-Keywords: Received: via spool by 1282-submit@emacsbugs.donarmstrong.com id=B1282.122552957030653 (code B ref 1282); Sat, 01 Nov 2008 09:00:02 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rzlab.ucr.edu X-Spam-Level: X-Spam-Status: No, score=-7.1 required=4.0 tests=AWL,BAYES_00,HAS_BUG_NUMBER, MURPHY_DRUGS_REL8 autolearn=ham version=3.2.3-bugs.debian.org_2005_01_02 Received: (at 1282) by emacsbugs.donarmstrong.com; 1 Nov 2008 08:52:50 +0000 Received: from viper.snap.net.nz (viper.snap.net.nz [202.37.101.25]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id mA18qkas030646 for <1282@emacsbugs.donarmstrong.com>; Sat, 1 Nov 2008 01:52:48 -0700 Received: from kahikatea.snap.net.nz (241.61.255.123.dynamic.snap.net.nz [123.255.61.241]) by viper.snap.net.nz (Postfix) with ESMTP id 1EB023DA508; Sat, 1 Nov 2008 21:52:37 +1300 (NZDT) Received: by kahikatea.snap.net.nz (Postfix, from userid 1000) id 9B7F08FC6D; Sat, 1 Nov 2008 21:52:31 +1300 (NZDT) From: Nick Roberts MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18700.6349.912463.590432@kahikatea.snap.net.nz> Date: Sat, 1 Nov 2008 21:52:29 +1300 To: Michael Ernst , 1282@debbugs.gnu.org Cc: bug-gnu-emacs@gnu.org In-Reply-To: <18698.36759.322749.276498@swsmde.ds.mpi-sws.mpg.de> References: <18698.36759.322749.276498@swsmde.ds.mpi-sws.mpg.de> X-Mailer: VM 7.19 under Emacs 22.3.1 > This patch improves an error message in gud.el, by indicating the name of > the file that cannot be found. > > -Michael Ernst If I have a file MyProg.java, with your patch I get: Could not find source file MyProg i.e. the class name not the filename. Have you read this comment in gud.el? ;; The first group matches , ;; the second group matches and the third group ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ;; matches . We don't care about using Generally, if there is more than one (non-public) class in the file, the class name needn't match the filename. -- Nick http://www.inet.net.nz/~nickrob From unknown Sat Jun 21 03:29:26 2025 X-Loop: don@donarmstrong.com Subject: bug#1282: Improvement to gud.el error message Reply-To: Michael Ernst , 1282@debbugs.gnu.org Resent-From: Michael Ernst Resent-To: bug-submit-list@lists.donarmstrong.com Resent-CC: Emacs Bugs Resent-Date: Sun, 02 Nov 2008 15:50:02 +0000 Resent-Message-ID: Resent-Sender: don@donarmstrong.com X-Emacs-PR-Message: report 1282 X-Emacs-PR-Package: emacs X-Emacs-PR-Keywords: Received: via spool by submit@emacsbugs.donarmstrong.com id=B.122564049212748 (code B ref -1); Sun, 02 Nov 2008 15:50:02 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rzlab.ucr.edu X-Spam-Level: X-Spam-Status: No, score=-10.2 required=4.0 tests=AWL,BAYES_00,HAS_BUG_NUMBER, MURPHY_DRUGS_REL8,RCVD_IN_DNSWL_MED autolearn=ham version=3.2.3-bugs.debian.org_2005_01_02 Received: (at submit) by emacsbugs.donarmstrong.com; 2 Nov 2008 15:41:32 +0000 Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id mA2FfT5N012742 for ; Sun, 2 Nov 2008 07:41:30 -0800 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Kwf4z-00048C-7e for bug-gnu-emacs@gnu.org; Sun, 02 Nov 2008 10:41:29 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Kwf4x-00046Z-1K for bug-gnu-emacs@gnu.org; Sun, 02 Nov 2008 10:41:28 -0500 Received: from [199.232.76.173] (port=55475 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Kwf4w-00046P-Pa for bug-gnu-emacs@gnu.org; Sun, 02 Nov 2008 10:41:26 -0500 Received: from hera.mpi-sb.mpg.de ([139.19.1.49]:35432) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Kwf4w-00081D-El for bug-gnu-emacs@gnu.org; Sun, 02 Nov 2008 10:41:26 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mpi-sb.mpg.de; s=mail200803; h=MIME-Version:Content-Type: Content-Transfer-Encoding:Message-ID:Date:To:Cc:Subject: In-Reply-To:References:From; bh=hPoemmsfi3nmFOnL+3spsJIjsDa0R2yB AVbSCuRQkno=; b=b5q33LSZ7QvqQ/FjzWeaqzNXIneh6uirHNKQMael4PMykBaD ZUVMgHaBqLG/z33rGCOigB0LSAD+3EeNMhqCMzjblPNFoJW+hr7ivbdQpQXFtRXV R9lFnyhz4c9Vtbcp+8IUAQcHZlFhsikirMK8R04deuf7X8mDrJq92Db7xpw= Received: from infao0523.mpi-sb.mpg.de ([139.19.3.135]:52931 helo=maildist0.mpi-sb.mpg.de) by hera.mpi-sb.mpg.de (envelope-from ) with esmtp (Exim 4.69) id 1Kwf4E-0006P1-Dv; Sun, 02 Nov 2008 16:40:45 +0100 Received: from swsmde.ds.mpi-sws.mpg.de ([139.19.131.44]:42493) by maildist0.mpi-sb.mpg.de with esmtp (Exim 4.63) (envelope-from ) id 1Kwf4D-0001Mz-To; Sun, 02 Nov 2008 16:40:41 +0100 Received: from mernst by swsmde.ds.mpi-sws.mpg.de with local (Exim 4.63) (envelope-from ) id 1Kwf4D-0002Ki-S4; Sun, 02 Nov 2008 16:40:41 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18701.51702.20676.817268@swsmde.ds.mpi-sws.mpg.de> Date: Sun, 2 Nov 2008 16:40:38 +0100 To: Nick Roberts Cc: 1282@debbugs.gnu.org, bug-gnu-emacs@gnu.org In-Reply-To: <18700.6349.912463.590432@kahikatea.snap.net.nz> References: <18698.36759.322749.276498@swsmde.ds.mpi-sws.mpg.de> <18700.6349.912463.590432@kahikatea.snap.net.nz> From: Michael Ernst X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) X-CrossAssassin-Score: 2 > If I have a file MyProg.java, with your patch I get: > > Could not find source file MyProg > > i.e. the class name not the filename. OK. Feel free to modify the patch based on your more intimate knowledge of the source code. The key point is that the error message with no indication of anything (class name nor filename) is cryptic, and additional information would be useful. Thanks! -Michael Ernst From unknown Sat Jun 21 03:29:26 2025 X-Loop: help-debbugs@gnu.org Subject: bug#1282: Improvement to gud.el error message Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 19 Sep 2020 22:32:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 1282 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Michael Ernst Cc: 1282@debbugs.gnu.org Received: via spool by 1282-submit@debbugs.gnu.org id=B1282.160055467124083 (code B ref 1282); Sat, 19 Sep 2020 22:32:02 +0000 Received: (at 1282) by debbugs.gnu.org; 19 Sep 2020 22:31:11 +0000 Received: from localhost ([127.0.0.1]:48371 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kJlNv-0006G2-6q for submit@debbugs.gnu.org; Sat, 19 Sep 2020 18:31:11 -0400 Received: from quimby.gnus.org ([95.216.78.240]:52946) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kJlNs-00069E-RB for 1282@debbugs.gnu.org; Sat, 19 Sep 2020 18:31:10 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=zNdw6TG9IYiXcZbnnEqp1rLa+FiP/roEb3B5k6NKs7w=; b=h1y36r6DbuFxlt3NkOV73N+cDo 5UX/aeW1piiG2kY1LzE/T0EXuxJ6p1+yk6XkoLOYqmMgzLQgW8TILO511bXHprRIYinKw+VkrqcW0 t3aKz4N6DY7Ouae6zWQILqx7/4h+8Z8DIc69Ou9nCzTFftDLf71Mraz2FRiqIUgfKLD8=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kJlNc-0007Le-WF; Sun, 20 Sep 2020 00:31:02 +0200 From: Lars Ingebrigtsen References: <18698.36759.322749.276498@swsmde.ds.mpi-sws.mpg.de> X-Now-Playing: Anne Pigalle's _Everything Could Be So Perfect..._: "Looking for Love" Date: Sun, 20 Sep 2020 00:30:51 +0200 In-Reply-To: <18698.36759.322749.276498@swsmde.ds.mpi-sws.mpg.de> (Michael Ernst's message of "Fri, 31 Oct 2008 05:54:47 +0100") Message-ID: <87eemxjt5w.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.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 @@CONTACT_ADDRESS@@ for details. Content preview: Michael Ernst writes: > This patch improves an error message in gud.el, by indicating the name of > the file that cannot be found. [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) 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: -1.0 (-) Michael Ernst writes: > This patch improves an error message in gud.el, by indicating the name of > the file that cannot be found. [...] > + (let ((filename (match-string 2 gud-marker-acc))) > (if (setq file-found > - (gud-jdb-find-source (match-string 2 gud-marker-acc))) > + (gud-jdb-find-source filename)) > (setq gud-last-frame > (cons file-found > (string-to-number > @@ -2233,7 +2234,7 @@ > (if (string-match "[.,]" numstr) > (replace-match "" nil nil numstr) > numstr))))) > - (message "Could not find source file."))) > + (message "Could not find source file %s" filename)))) Nick Roberts writes: > If I have a file MyProg.java, with your patch I get: > > Could not find source file MyProg > > i.e. the class name not the filename. > > Have you read this comment in gud.el? > > ;; The first group matches , > ;; the second group matches and the third group > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > ;; matches . We don't care about using > > Generally, if there is more than one (non-public) class in the file, the > class name needn't match the filename. I'm not quite sure I get the objection here. The patch only adds more information to the error message and doesn't change anything else. Is the objection that the new message implies that the thing we matched was a file name and not a class? So I changed the patch to slightly and applied it to Emacs 28. diff --git a/lisp/progmodes/gud.el b/lisp/progmodes/gud.el index 092d15983e..84c473ddb7 100644 --- a/lisp/progmodes/gud.el +++ b/lisp/progmodes/gud.el @@ -2358,17 +2358,17 @@ gud-jdb-marker-filter (if (< n gud-jdb-lowest-stack-level) (progn (setq gud-jdb-lowest-stack-level n) t))) t) - (if (setq file-found - (gud-jdb-find-source (match-string 2 gud-marker-acc))) - (setq gud-last-frame - (cons file-found - (string-to-number - (let - ((numstr (match-string 4 gud-marker-acc))) - (if (string-match "[.,]" numstr) - (replace-match "" nil nil numstr) - numstr))))) - (message "Could not find source file."))) + (let ((class (match-string 2 gud-marker-acc))) + (if (setq file-found (gud-jdb-find-source class)) + (setq gud-last-frame + (cons file-found + (string-to-number + (let + ((numstr (match-string 4 gud-marker-acc))) + (if (string-match "[.,]" numstr) + (replace-match "" nil nil numstr) + numstr))))) + (message "Could not find source file for %s" class)))) ;; Set the accumulator to the remaining text. (setq gud-marker-acc (substring gud-marker-acc (match-end 0)))) -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Sat Sep 19 18:31:16 2020 Received: (at control) by debbugs.gnu.org; 19 Sep 2020 22:31:16 +0000 Received: from localhost ([127.0.0.1]:48374 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kJlO0-0006Ky-Ja for submit@debbugs.gnu.org; Sat, 19 Sep 2020 18:31:16 -0400 Received: from quimby.gnus.org ([95.216.78.240]:52960) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kJlNz-0006Eq-4A for control@debbugs.gnu.org; Sat, 19 Sep 2020 18:31:15 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=UTmfOd54pb92aqsdX/mT+NRgFjyPt2ZCVNGQ+sxNObk=; b=hCYkeAKYH1pxxglM0Hah8l7dxv GycBfWPmvQ5YrZaVBoHlHhiZ7iISTYH7ALoODxnwLUIZRqcXOw44wu9xqumlHo+uqDqzWOOQ1Wt1m gqeOxa7c5WVK6oRQ2F/0WuTsia3yrrGY5wCF6fjiupfU8L61CoqUpdfmu6g0BuctrHis=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kJlNr-0007Ls-BZ for control@debbugs.gnu.org; Sun, 20 Sep 2020 00:31:09 +0200 Date: Sun, 20 Sep 2020 00:31:06 +0200 Message-Id: <87d02hjt5h.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #1282 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.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 @@CONTACT_ADDRESS@@ for details. Content preview: tags 1282 fixed close 1282 28.1 quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] 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: -1.0 (-) tags 1282 fixed close 1282 28.1 quit