From debbugs-submit-bounces@debbugs.gnu.org Sun Apr 09 17:23:21 2017 Received: (at submit) by debbugs.gnu.org; 9 Apr 2017 21:23:21 +0000 Received: from localhost ([127.0.0.1]:40179 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cxKIr-0008I1-FI for submit@debbugs.gnu.org; Sun, 09 Apr 2017 17:23:21 -0400 Received: from eggs.gnu.org ([208.118.235.92]:34988) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cxKIo-0008Ho-Pj for submit@debbugs.gnu.org; Sun, 09 Apr 2017 17:23:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cxKIi-00081x-TV for submit@debbugs.gnu.org; Sun, 09 Apr 2017 17:23:13 -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.3 required=5.0 tests=BAYES_50,RCVD_IN_SORBS_SPAM autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:57814) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cxKIi-00081s-QG for submit@debbugs.gnu.org; Sun, 09 Apr 2017 17:23:12 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54173) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cxKIh-0000BU-QW for bug-gnu-emacs@gnu.org; Sun, 09 Apr 2017 17:23:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cxKIe-00080h-Mr for bug-gnu-emacs@gnu.org; Sun, 09 Apr 2017 17:23:11 -0400 Received: from aserp1040.oracle.com ([141.146.126.69]:49428) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cxKIe-00080G-EG for bug-gnu-emacs@gnu.org; Sun, 09 Apr 2017 17:23:08 -0400 Received: from userv0021.oracle.com (userv0021.oracle.com [156.151.31.71]) by aserp1040.oracle.com (Sentrion-MTA-4.3.2/Sentrion-MTA-4.3.2) with ESMTP id v39LN5xo005591 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Sun, 9 Apr 2017 21:23:05 GMT Received: from aserv0122.oracle.com (aserv0122.oracle.com [141.146.126.236]) by userv0021.oracle.com (8.14.4/8.14.4) with ESMTP id v39LN4rA025442 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Sun, 9 Apr 2017 21:23:05 GMT Received: from abhmp0010.oracle.com (abhmp0010.oracle.com [141.146.116.16]) by aserv0122.oracle.com (8.14.4/8.14.4) with ESMTP id v39LN3Tc019554 for ; Sun, 9 Apr 2017 21:23:04 GMT MIME-Version: 1.0 Message-ID: Date: Sun, 9 Apr 2017 14:23:02 -0700 (PDT) From: Drew Adams To: bug-gnu-emacs@gnu.org Subject: 24.5; (elisp) Extended Menu Items: document same features for menus X-Priority: 3 X-Mailer: Oracle Beehive Extensions for Outlook 2.0.1.9.1 (1003210) [OL 12.0.6753.5000 (x86)] Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Source-IP: userv0021.oracle.com [156.151.31.71] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -3.5 (---) 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: -3.5 (---) I filed a bug a few years back to get the use of keywords documented for separator lines. That was done: in (elisp) `Menu Separators' we now have this: You can use a longer form to specify keywords such as `:enable' and `:visible=3D' for a menu separator: (menu-item SEPARATOR-TYPE nil . ITEM-PROPERTY-LIST) For example: (menu-item "--" nil :visible (boundp 'foo)) After some fiddling, I found that the same is true for menus (e.g. submenus). This too should be documented - it is not obvious. What is needed is to pass the keymap itself, not a variable whose value is the keymap, as the REAL-BINDING. E.g.: (define-key diredp-menu-bar-operate-menu [multiple-dired] `(menu-item "Dired" ,diredp-multiple-dired-menu :visible (save-excursion (goto-char (point-min)) (and (re-search-forward (dired-marker-regexp) nil t) (re-search-forward (dired-marker-regexp) nil t))))) It's not enough to use `diredp-multiple-dired-menu' as the second arg to `menu-item'. Its value needs to be passed as the second arg. The way (elisp) Extended Menu Items is written, it seems to apply only to menu items that are leaves, not to those that are submenu names. Even the description of REAL-BINDING suggests this limitation ("the command to execute"). Please document how to use :enable, :visible etc. with a (sub)menu. In GNU Emacs 24.5.1 (i686-pc-mingw32) of 2015-04-11 on LEG570 Windowing system distributor `Microsoft Corp.', version 6.1.7601 Configured using: `configure --prefix=3D3D/c/usr --host=3D3Di686-pc-mingw32' From debbugs-submit-bounces@debbugs.gnu.org Sat Dec 12 14:50:27 2020 Received: (at 26428) by debbugs.gnu.org; 12 Dec 2020 19:50:27 +0000 Received: from localhost ([127.0.0.1]:46687 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1koAuR-0006uw-5r for submit@debbugs.gnu.org; Sat, 12 Dec 2020 14:50:27 -0500 Received: from quimby.gnus.org ([95.216.78.240]:50576) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1koAuO-0006uh-Vz for 26428@debbugs.gnu.org; Sat, 12 Dec 2020 14:50:25 -0500 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=00Pj/LjdOQHdDRlu1tPUbaFdjZgGCvB9NFEOw8OWFD0=; b=FCkhFstEt1EAfPXXDTffoUHfUi 8gqqxdAHI1L9+YPuzWCnn3DVZQQFrVWjcfFhx1vXgkOKYdvuNTJOzCDzZeECBZS3Lx2rEOfVa+/2I KaQ4zvtjV4ihQBXsHnBzuJ82mT4ggtIwBYOGBIq6NrqU3mPoBU9V1DYDkvJfiUDUBJFw=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1koAuG-00022v-60; Sat, 12 Dec 2020 20:50:18 +0100 From: Lars Ingebrigtsen To: Drew Adams Subject: Re: bug#26428: 24.5; (elisp) Extended Menu Items: document same features for menus References: X-Now-Playing: Cross Talk IV's _Magic Oneohtrix Point Never_: "Radio Lonelys" Date: Sat, 12 Dec 2020 20:50:14 +0100 In-Reply-To: (Drew Adams's message of "Sun, 9 Apr 2017 14:23:02 -0700 (PDT)") Message-ID: <87eeju953d.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: Drew Adams writes: > I filed a bug a few years back to get the use of keywords documented for > separator lines. That was done: in (elisp) `Menu Separators' we now > have this: > > You can use a longer form to specify k [...] 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: 26428 Cc: 26428@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: -1.0 (-) Drew Adams writes: > I filed a bug a few years back to get the use of keywords documented for > separator lines. That was done: in (elisp) `Menu Separators' we now > have this: > > You can use a longer form to specify keywords such as `:enable' > and `:visible=' for a menu separator: > > (menu-item SEPARATOR-TYPE nil . ITEM-PROPERTY-LIST) > > For example: > > (menu-item "--" nil :visible (boundp 'foo)) > > After some fiddling, I found that the same is true for menus > (e.g. submenus). This too should be documented - it is not obvious. Could you suggest a text for the manual to document this? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Sat Dec 12 17:01:52 2020 Received: (at 26428) by debbugs.gnu.org; 12 Dec 2020 22:01:52 +0000 Received: from localhost ([127.0.0.1]:47011 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1koCxc-0008Rg-2I for submit@debbugs.gnu.org; Sat, 12 Dec 2020 17:01:52 -0500 Received: from aserp2130.oracle.com ([141.146.126.79]:53922) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1koCxZ-0008RO-JC for 26428@debbugs.gnu.org; Sat, 12 Dec 2020 17:01:50 -0500 Received: from pps.filterd (aserp2130.oracle.com [127.0.0.1]) by aserp2130.oracle.com (8.16.0.42/8.16.0.42) with SMTP id 0BCM13Nv177778; Sat, 12 Dec 2020 22:01:42 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=oracle.com; h=mime-version : message-id : date : from : sender : to : cc : subject : references : in-reply-to : content-type : content-transfer-encoding; s=corp-2020-01-29; bh=/sV6r4vy4s9jDN77Xuqq8rig9UqoumZTc9ZPXZQAJpU=; b=ewm0faT/5D8Xwe+6dF1oKlWN7C5SMAYzne5PK6yBl9WtpXuJpe7uZKIAgtNBWkA7yzR0 7OgBDcH1d93oLz5CrfTbr6AhBaZ3qjnezJ6c7pBgdxBMq4AFNkvfNXhlNITjrlFpvY/y fr8MQFdBO/wTgojjbJ+UQSpsOl1LuKIN13zvxqJwQLc/IYYAZfgFgq6fG9/cW7e7uxtg wE91bMh9wydh7TYiYjEOFr5qX6H9mLYUXD66cAHQCiILdRMggjTqyEpsnhCfw6ALlYy2 QfPBJOVESnJHsZ5SJ2uu8YeCZA+It8dRXvgX1uS9V1Q0tZYjJg3PkQn1RZWTAOcfYKS0 3w== Received: from aserp3020.oracle.com (aserp3020.oracle.com [141.146.126.70]) by aserp2130.oracle.com with ESMTP id 35ckcb1fjs-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Sat, 12 Dec 2020 22:01:42 +0000 Received: from pps.filterd (aserp3020.oracle.com [127.0.0.1]) by aserp3020.oracle.com (8.16.0.42/8.16.0.42) with SMTP id 0BCM0hNp137224; Sat, 12 Dec 2020 22:01:42 GMT Received: from userv0121.oracle.com (userv0121.oracle.com [156.151.31.72]) by aserp3020.oracle.com with ESMTP id 35cnp01r75-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Sat, 12 Dec 2020 22:01:42 +0000 Received: from abhmp0012.oracle.com (abhmp0012.oracle.com [141.146.116.18]) by userv0121.oracle.com (8.14.4/8.13.8) with ESMTP id 0BCM1dLE032461; Sat, 12 Dec 2020 22:01:41 GMT MIME-Version: 1.0 Message-ID: <0c41efdb-437f-4f41-85b2-6f28a3d80c66@default> Date: Sat, 12 Dec 2020 14:01:38 -0800 (PST) From: Drew Adams To: Lars Ingebrigtsen Subject: RE: bug#26428: 24.5; (elisp) Extended Menu Items: document same features for menus References: <87eeju953d.fsf@gnus.org> In-Reply-To: <87eeju953d.fsf@gnus.org> X-Priority: 3 X-Mailer: Oracle Beehive Extensions for Outlook 2.0.1.9.1 (1003210) [OL 16.0.5071.0 (x86)] Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Proofpoint-Virus-Version: vendor=nai engine=6000 definitions=9833 signatures=668683 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 phishscore=0 adultscore=0 bulkscore=0 suspectscore=0 spamscore=0 mlxscore=0 mlxlogscore=999 malwarescore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2009150000 definitions=main-2012120172 X-Proofpoint-Virus-Version: vendor=nai engine=6000 definitions=9833 signatures=668683 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 bulkscore=0 mlxlogscore=999 priorityscore=1501 mlxscore=0 suspectscore=0 adultscore=0 phishscore=0 malwarescore=0 impostorscore=0 lowpriorityscore=0 clxscore=1011 spamscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2009150000 definitions=main-2012120172 X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 26428 Cc: 26428@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.3 (---) > Could you suggest a text for the manual to document this? Doing this quickly. Modify as you see fit. In node `Extended Menu Items' we say: To define a real menu item which can be selected, the extended format binding looks like this: (menu-item ITEM-NAME REAL-BINDING . ITEM-PROPERTY-LIST) Here, ITEM-NAME is an expression which evaluates to the menu item string. Thus, the string need not be a constant. The third element, REAL-BINDING, is the command to execute. The tail of the list, ITEM-PROPERTY-LIST, has the form of a property list which contains other information. The last paragraph could be changed to indicate that REAL-BINDING can be a command or a menu keymap (but not a keymap-variable symbol). Something like this perhaps: Here, ITEM-NAME is an expression which evaluates to the menu item string. Thus, the string need not be a constant. The third element, REAL-BINDING, is the command to execute or a menu keymap (but not a keymap-variable symbol). If it is a menu keymap, that is, a keymap that has a prompt string, then ITEM-NAME is the name that appears for the submenu in its parent menu. =20 The tail of the list, ITEM-PROPERTY-LIST, has the form of a property list that contains other information. If you don't think that's clear enough (I do) then you can add an example such as what I provided in the bug report. One thing I'm not clear on (haven't investigated): I'm guessing that the keymap you provide here needs to be a menu keymap, that is, a keymap with a prompt string. Dunno whether that's true. If not, remove mention of that. Whether that's actually needed or just possible, when it happens what's the relation between the prompt string and ITEM-NAME? I'm guessing that ITEM-NAME is used for the submenu name that appears, and the prompt string is not used in this context. From debbugs-submit-bounces@debbugs.gnu.org Sun Dec 13 07:50:02 2020 Received: (at 26428) by debbugs.gnu.org; 13 Dec 2020 12:50:02 +0000 Received: from localhost ([127.0.0.1]:47625 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1koQp7-0004Tl-U1 for submit@debbugs.gnu.org; Sun, 13 Dec 2020 07:50:02 -0500 Received: from quimby.gnus.org ([95.216.78.240]:58120) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1koQp6-0004TC-2k for 26428@debbugs.gnu.org; Sun, 13 Dec 2020 07:50:00 -0500 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=NuDgEtY5jVQAVmw4BBfRvpCm8oIUo5HePfOkXfHiAlI=; b=s+GvIrCHapcOLtodJkZ8WJIRtN BnepB1InONOB5P4mNzz2SiPZqYIxoMPzRkrB525l4P6QCTvrtFIYY7Zgm30vpAythmaPtrFzi6qzG jvzipdoYn2+L7V0WRvOdgveVuqKcOuUiTAJNnvFAJG2/kurAH/7e6hUKksEHE5Xg6ALI=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1koQox-0004yH-6m; Sun, 13 Dec 2020 13:49:53 +0100 From: Lars Ingebrigtsen To: Drew Adams Subject: Re: bug#26428: 24.5; (elisp) Extended Menu Items: document same features for menus References: <87eeju953d.fsf@gnus.org> <0c41efdb-437f-4f41-85b2-6f28a3d80c66@default> Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAABGdBTUEAALGPC/xhBQAAACBj SFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAJ1BMVEUnKjFIWW55hYZX Ym+RmZyMd4beO1DQtL/MydHqHjSzucl8quv////g3T9KAAAAAWJLR0QMgbNRYwAAAAd0SU1FB+QM DQwbKg0MPcAAAAGjSURBVDjLbdFLbsIwEAZgrmDcCxBygcSpVHVpoqrqtmXBvg2EA5DQAxCLAwR5 XzXWdN37dfyIY1MGCYb5/DtOMpvN5nmSJEv9tSCJrxmC/5OR+U1YEkJuQoaQ3wAdIBSblPMyBB3Q kbTUZUA3nJs5obwc4c4uWVgg6QSm4ZmD+RWsCIkiHjIPRQRTgNAIpoDbywEP5vbyDhYZu4pY4Czc ihYeVixMUOaBZZSxac4KBytmyozZfVW95g7sPNMPPW27ppYfqQFul+MUoGla0aEYWOBilrzAGWBo jMj+Tb8PyvJSCSFAB7CEONbvCJRmz8LOh62R5tRXCAUr9Bw3+tlIU31V9QgPehsT+JVj1VsNnQvA xoNsDeyVHsPTNL8IDeKwv5rL1kInq/W6kmFA2IsfZVy7EU7xvBcW8Ke+DrhEHNGBEaLIdgIQhyDQ ejiD6qKzjoB3p6YTtxFAFwcMAOCzVZsoYEGps1LuxD1eUAilEB71Tkq5E++ww1OKEbC+bUAoUBEM Q20C5tVAmAC8yf4TZ/gBFQKeeDv2EAIcbeA/fF18C38TwJZnmmD7qQAAACV0RVh0ZGF0ZTpjcmVh dGUAMjAyMC0xMi0xM1QxMjoyNzo0MiswMDowMOcXzaIAAAAldEVYdGRhdGU6bW9kaWZ5ADIwMjAt MTItMTNUMTI6Mjc6NDErMDA6MDCnom+DAAAAAElFTkSuQmCC X-Now-Playing: Colleen's _A Flame My Love, A Frequency_: "The Stars Vs Creatures" Date: Sun, 13 Dec 2020 13:49:49 +0100 In-Reply-To: <0c41efdb-437f-4f41-85b2-6f28a3d80c66@default> (Drew Adams's message of "Sat, 12 Dec 2020 14:01:38 -0800 (PST)") Message-ID: <8736096fbm.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: Drew Adams writes: > Doing this quickly. Modify as you see fit. Thanks; I've now expanded the section a bit along the lines you suggest. 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: 26428 Cc: 26428@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: -1.0 (-) Drew Adams writes: > Doing this quickly. Modify as you see fit. Thanks; I've now expanded the section a bit along the lines you suggest. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Sun Dec 13 07:50:09 2020 Received: (at control) by debbugs.gnu.org; 13 Dec 2020 12:50:09 +0000 Received: from localhost ([127.0.0.1]:47628 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1koQpF-0004Ue-9b for submit@debbugs.gnu.org; Sun, 13 Dec 2020 07:50:09 -0500 Received: from quimby.gnus.org ([95.216.78.240]:58136) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1koQpE-0004U6-4a for control@debbugs.gnu.org; Sun, 13 Dec 2020 07:50:08 -0500 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=K67jKE64nBSEznDe6seYnsUFusUOL1XDH61zMzHMgnM=; b=gaMe1aGCeYgowsJ8lhhxuv2NUS wC75241Os9v80+a0tyTO7A0EOidz/TqPuu8jBlLWJzgKed2RMLVVuTP9+WWRml7Kvzfgohd/bAWfI Dog96kOCSdnnF/beCovjQygTUoJwh3xYOovGxZk9hHjDA8mnv+gw4mQgHOSnoswbu7Mw=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1koQp6-0004yW-GP for control@debbugs.gnu.org; Sun, 13 Dec 2020 13:50:02 +0100 Date: Sun, 13 Dec 2020 13:49:59 +0100 Message-Id: <871rft6fbc.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #26428 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 26428 fixed close 26428 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 26428 fixed close 26428 28.1 quit From unknown Sat Jun 21 05:16:41 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, 11 Jan 2021 12:24:06 +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