From unknown Tue Aug 19 23:13:46 2025 X-Loop: help-debbugs@gnu.org Subject: bug#44156: 26.3; ERC: Fix ERC's IBuffer format "crash" on killed server buffer Resent-From: Olivier Certner Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 22 Oct 2020 21:51:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 44156 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: 44156@debbugs.gnu.org X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.160340343718064 (code B ref -1); Thu, 22 Oct 2020 21:51:02 +0000 Received: (at submit) by debbugs.gnu.org; 22 Oct 2020 21:50:37 +0000 Received: from localhost ([127.0.0.1]:54119 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kViTl-0004hI-HZ for submit@debbugs.gnu.org; Thu, 22 Oct 2020 17:50:37 -0400 Received: from lists.gnu.org ([209.51.188.17]:51094) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kViTi-0004h9-W3 for submit@debbugs.gnu.org; Thu, 22 Oct 2020 17:50:35 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:37084) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kViTi-0005ux-Nz for bug-gnu-emacs@gnu.org; Thu, 22 Oct 2020 17:50:34 -0400 Received: from smtp3-g21.free.fr ([2a01:e0c:1:1599::12]:25730) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kViTg-00039I-M7 for bug-gnu-emacs@gnu.org; Thu, 22 Oct 2020 17:50:34 -0400 Received: from ravel.localnet (unknown [90.8.148.191]) (Authenticated sender: ocert.dev@free.fr) by smtp3-g21.free.fr (Postfix) with ESMTPSA id 8B8E413F85F for ; Thu, 22 Oct 2020 23:50:27 +0200 (CEST) From: Olivier Certner Date: Thu, 22 Oct 2020 23:50:27 +0200 Message-ID: <1823357.Ei5Gdb227I@ravel> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="nextPart47182727.lso2nkH8hQ" Content-Transfer-Encoding: 7Bit Received-SPF: none client-ip=2a01:e0c:1:1599::12; envelope-from=ocert.dev@free.fr; helo=smtp3-g21.free.fr X-detected-operating-system: by eggs.gnu.org: No matching host in p0f cache. That's all we know. X-Spam_score_int: 1 X-Spam_score: 0.1 X-Spam_bar: / X-Spam_report: (0.1 / 5.0 requ) BAYES_00=-1.9, FREEMAIL_FROM=0.001, SPF_HELO_NONE=0.001, SPF_NONE=0.001, SPOOFED_FREEMAIL=1.999 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: -0.3 (/) 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 (---) This is a multi-part message in MIME format. --nextPart47182727.lso2nkH8hQ Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="UTF-8" Applies to 26.3, but also to all more recent versions as well. Bug trigger: 1. Load ERC (e.g., open some IRC connection). 2. Open some channel or query, to have another ERC buffer. 3. Quit the server. 4. Make sure to kill the server buffer, if still there. 5. Launch ibuffer (e.g., type "M-x ibuffer"). Display stops mid-line on a line listing some ERC buffer linked to the quit server. Further buffer updates (typing 'g') trigger a crash for another reason (another fix to follow-up). Root cause: The erc-ibuffer's server column code will return nil in this case, since the buffer associated to its process has been killed, making the server information inacessible, and this is not tested properly. Patch: Attached. -- Olivier Certner --nextPart47182727.lso2nkH8hQ Content-Disposition: attachment; filename="0001-ERC-Fix-ERC-s-IBuffer-format-crash-on-killed-server-.patch" Content-Transfer-Encoding: 7Bit Content-Type: text/x-patch; charset="UTF-8"; name="0001-ERC-Fix-ERC-s-IBuffer-format-crash-on-killed-server-.patch" >From e10325a729d39b32dcf83de17a7f19e5152ec496 Mon Sep 17 00:00:00 2001 From: Olivier Certner Date: Thu, 22 Oct 2020 23:14:22 +0200 Subject: [PATCH] ERC: Fix ERC's IBuffer format "crash" on killed server buffer * lisp/erc/erc-ibuffer.el (erc-server-name): Fix a crash when displaying (or updating) an IBuffer buffer using ERC's first IBuffer format. This happens when one ERC buffer has its associated server buffer killed, e.g., voluntarily or automatically after server disconnection when `erc-kill-server-buffer-on-quit' is set to t. The culprit is the "Server" column, which returns nil in this case. Display "(closed)" instead. --- ChangeLog.3 | 13 +++++++++++++ lisp/erc/erc-ibuffer.el | 12 ++++++++---- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/ChangeLog.3 b/ChangeLog.3 index ec2d3f8d46..65c846a307 100644 --- a/ChangeLog.3 +++ b/ChangeLog.3 @@ -1,3 +1,16 @@ +2020-10-22 Olivier Certner + + ERC: Fix ERC's IBuffer format "crash" on killed server buffer + + * lisp/erc/erc-ibuffer.el (erc-server-name): Fix a crash when + displaying (or updating) an IBuffer buffer using ERC's first + IBuffer format. This happens when one ERC buffer has its + associated server buffer killed, e.g., voluntarily or + automatically after server disconnection when + `erc-kill-server-buffer-on-quit' is set to t. The culprit is the + "Server" column, which returns nil in this case. Display + "(closed)" instead. + 2020-08-03 Phil Sainty lisp/so-long.el: Improve support for major mode hooks diff --git a/lisp/erc/erc-ibuffer.el b/lisp/erc/erc-ibuffer.el index 7aee7705ff..556a25e3e7 100644 --- a/lisp/erc/erc-ibuffer.el +++ b/lisp/erc/erc-ibuffer.el @@ -92,10 +92,14 @@ " ")) (define-ibuffer-column erc-server-name (:name "Server") - (if (and erc-server-process (processp erc-server-process)) - (with-current-buffer (process-buffer erc-server-process) - (or erc-server-announced-name erc-session-server)) - "")) + (or + (when (and erc-server-process (processp erc-server-process)) + (let ((buffer (process-buffer erc-server-process))) + (if (buffer-live-p buffer) + (with-current-buffer buffer + (or erc-server-announced-name erc-session-server)) + "(closed)"))) + "")) (define-ibuffer-column erc-target (:name "Target") (if (eq major-mode 'erc-mode) -- 2.24.1 --nextPart47182727.lso2nkH8hQ-- From unknown Tue Aug 19 23:13:46 2025 X-Loop: help-debbugs@gnu.org Subject: bug#44156: 26.3; ERC: Fix ERC's IBuffer format "crash" on killed server buffer Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 23 Oct 2020 12:42:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 44156 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Olivier Certner Cc: 44156@debbugs.gnu.org Received: via spool by 44156-submit@debbugs.gnu.org id=B44156.16034568733016 (code B ref 44156); Fri, 23 Oct 2020 12:42:01 +0000 Received: (at 44156) by debbugs.gnu.org; 23 Oct 2020 12:41:13 +0000 Received: from localhost ([127.0.0.1]:56267 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kVwNb-0000mY-C4 for submit@debbugs.gnu.org; Fri, 23 Oct 2020 08:41:13 -0400 Received: from quimby.gnus.org ([95.216.78.240]:55024) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kVwNW-0000lq-Ut for 44156@debbugs.gnu.org; Fri, 23 Oct 2020 08:41: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=blXa/SQkp3RVmzCxIxaEPhzsBDSxUiic3uUNFd+YDy0=; b=ix/C7cap6o5l1MY6QFWvdwyccO B03OQuTNdbm5TdxuykjPP8IH2fE7RKTl1UCnWgqM6PirSCANpStZexqSf69tg0owtre8U3gtlzjox IBo8hRU1StF2ULFqM7c9FGCgWaI46f6zQx/c/LNCCYbuwCn6B644d5yWYFY0f0payvBQ=; 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 1kVwNM-0000t0-DU; Fri, 23 Oct 2020 14:41:00 +0200 From: Lars Ingebrigtsen References: <1823357.Ei5Gdb227I@ravel> X-Now-Playing: Laraaji & Lyghte's _Celestial Realms_: "Equinox" Date: Fri, 23 Oct 2020 14:40:54 +0200 In-Reply-To: <1823357.Ei5Gdb227I@ravel> (Olivier Certner's message of "Thu, 22 Oct 2020 23:50:27 +0200") Message-ID: <87pn59f73d.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: Olivier Certner writes: > Root cause: > The erc-ibuffer's server column code will return nil in this case, since > the buffer associated to its process has been killed, making the server > information inacessible, and this i [...] 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 (-) Olivier Certner writes: > Root cause: > The erc-ibuffer's server column code will return nil in this case, since > the buffer associated to its process has been killed, making the server > information inacessible, and this is not tested properly. > > Patch: > Attached. Thanks; looks good to me, so I've applied it to Emacs 28. It was small enough to apply without getting copyright assignment papers for the FSF, but any subsequent patches (that aren't very small) can't be applied without such paperwork. Would you be willing to sign such paperwork? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 23 08:41:14 2020 Received: (at control) by debbugs.gnu.org; 23 Oct 2020 12:41:14 +0000 Received: from localhost ([127.0.0.1]:56271 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kVwNe-0000mo-Ef for submit@debbugs.gnu.org; Fri, 23 Oct 2020 08:41:14 -0400 Received: from quimby.gnus.org ([95.216.78.240]:55040) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kVwNd-0000mN-6O for control@debbugs.gnu.org; Fri, 23 Oct 2020 08:41:13 -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=+/A9qQRUs83QfAc5F0QjwK3KST0wtHgU7ViNcnnCH2Q=; b=LkYX9EGmd1SgT89INjsTLStGdP Gy/PugUIM6tE0YTlItrwdvCWAvhnogPL23acZ0tVS6yow633pfrwBJ3x5pVFRKbKjXEQYGY5qXlPH fMJm/nyp1vAc4PGG5RMIdvpcWnjGtPNNbENXtR+D4240gJYhMYUg2smpKGqYtwnY7ZQc=; 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 1kVwNV-0000tC-Dq for control@debbugs.gnu.org; Fri, 23 Oct 2020 14:41:07 +0200 Date: Fri, 23 Oct 2020 14:41:04 +0200 Message-Id: <87o8ktf733.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #44156 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 44156 fixed close 44156 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 44156 fixed close 44156 28.1 quit From unknown Tue Aug 19 23:13:46 2025 X-Loop: help-debbugs@gnu.org Subject: bug#44156: 26.3; ERC: Fix ERC's IBuffer format "crash" on killed server buffer Resent-From: Olivier Certner Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 23 Oct 2020 13:01:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 44156 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: fixed To: 44156@debbugs.gnu.org X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.160345804513060 (code B ref -1); Fri, 23 Oct 2020 13:01:01 +0000 Received: (at submit) by debbugs.gnu.org; 23 Oct 2020 13:00:45 +0000 Received: from localhost ([127.0.0.1]:56288 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kVwgX-0003Oa-D1 for submit@debbugs.gnu.org; Fri, 23 Oct 2020 09:00:45 -0400 Received: from lists.gnu.org ([209.51.188.17]:37870) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kVwgV-0003OR-Lh for submit@debbugs.gnu.org; Fri, 23 Oct 2020 09:00:44 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:48866) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kVwgU-0000EX-80 for bug-gnu-emacs@gnu.org; Fri, 23 Oct 2020 09:00:43 -0400 Received: from smtp3-g21.free.fr ([2a01:e0c:1:1599::12]:54277) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kVwgS-0006se-AO for bug-gnu-emacs@gnu.org; Fri, 23 Oct 2020 09:00:41 -0400 Received: from ravel.localnet (unknown [90.8.148.191]) (Authenticated sender: ocert.dev@free.fr) by smtp3-g21.free.fr (Postfix) with ESMTPSA id AEA7613F8BA for ; Fri, 23 Oct 2020 15:00:36 +0200 (CEST) From: Olivier Certner Date: Fri, 23 Oct 2020 15:00:36 +0200 Message-ID: <3102580.bT80LyP3VS@ravel> In-Reply-To: <87pn59f73d.fsf@gnus.org> References: <1823357.Ei5Gdb227I@ravel> <87pn59f73d.fsf@gnus.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="UTF-8" Received-SPF: none client-ip=2a01:e0c:1:1599::12; envelope-from=ocert.dev@free.fr; helo=smtp3-g21.free.fr X-detected-operating-system: by eggs.gnu.org: No matching host in p0f cache. That's all we know. X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, FREEMAIL_FROM=0.001, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) 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 (---) > Thanks; looks good to me, so I've applied it to Emacs 28. Small question from a noob on GNU projects. I don't see any commit from you applying this. My origin repo is: https://git.savannah.gnu.org/git/ emacs.git. Could this be because it is not the official repo? I'm looking at 'master'. Or maybe you didn't push there yet? -- Olivier Certner From unknown Tue Aug 19 23:13:46 2025 X-Loop: help-debbugs@gnu.org Subject: bug#44156: 26.3; ERC: Fix ERC's IBuffer format "crash" on killed server buffer Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 23 Oct 2020 13:13:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 44156 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: fixed To: Olivier Certner Cc: 44156@debbugs.gnu.org Received: via spool by 44156-submit@debbugs.gnu.org id=B44156.160345875414259 (code B ref 44156); Fri, 23 Oct 2020 13:13:02 +0000 Received: (at 44156) by debbugs.gnu.org; 23 Oct 2020 13:12:34 +0000 Received: from localhost ([127.0.0.1]:56319 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kVwry-0003hv-CU for submit@debbugs.gnu.org; Fri, 23 Oct 2020 09:12:34 -0400 Received: from quimby.gnus.org ([95.216.78.240]:55310) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kVwrq-0003hZ-3v for 44156@debbugs.gnu.org; Fri, 23 Oct 2020 09:12:33 -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=aWN0gbnuOsZJX1DtJGnXLcT5VewV81wJksa8f/Q+NKc=; b=jLSLG98MyQAfPOrnya0xJMN2yD N2/C6p7CfKNLK4utoyRK6tlPHGB+ZqV1tkiMwN5JlPRIvYIj1Z1yiMOUfx8GjVqoPcDn486r8dAV2 efw2jnJ9hbBFtb1hts6UMpCQOGT3x56+QD9XS4WbZRHQAhKgCvwiqsRYUSxOPjDtwBV4=; 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 1kVwrX-00018z-8q; Fri, 23 Oct 2020 15:12:19 +0200 From: Lars Ingebrigtsen References: <1823357.Ei5Gdb227I@ravel> <87pn59f73d.fsf@gnus.org> <3102580.bT80LyP3VS@ravel> Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAABGdBTUEAALGPC/xhBQAAACBj SFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAG1BMVEUMCQckKCFbXFjN 0s2doJyAm38xYxxIii/////FnjXSAAAAAWJLR0QIht6VegAAAAd0SU1FB+QKFwwzJ54ErYwAAAGt SURBVDjLtZNBr5wgEMcZtT0zT59nBTa9tq5urwra88s+d/f6vOC5TQpfv7DdvABteuskQJwf/5lh EEII/jbmpxaRkncD73p8h/5/WsYbwh76JgSyeClG58woKcNgHz57DctKRpkIBflIpKqELLngKehy 3ihezSUPQdGB4mq+lMotUXJ1djVRCgQA4nJL+cUt7I/j8bz1wA+MgMhnFGw4STmxWJKraj0Np2Ho hhhUufo29MPXruNx8p4dh2VZbre5jRVI1fWqvaWF4fNy1dYaqyM3EPS7rbNYgljf3bvZMAGod6vT /f7W6107YPY3SIA2DhiXZ4MEbFojaLuhjsG9d7V2fh0n9/NHg6Q2YX6Ae5Ha4Xo3NFLQR0z9d1D7 00T1wrvfmuSITgL3Zn2PuwsbBa3Nbj+9xaCtt911xP6wcbeeWl+P3S/nJNJKni+39ecyy+QGJchZ vc7yOCWp+7WfuRq645iAVSI+sVZMSaSsQTd8DSRJMbVE+taMQEMNdJX7o2E6y0WwMH1ZuhBjJqW4 HOZQUbKeFn13EJId4hfl3xJSJMkpHlY0gpL/YL8AJH1codXpGjkAAAAldEVYdGRhdGU6Y3JlYXRl ADIwMjAtMTAtMjNUMTI6NTE6MzgrMDA6MDBKqaNEAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDIwLTEw LTIzVDEyOjUxOjM4KzAwOjAwO/Qb+AAAAABJRU5ErkJggg== X-Now-Playing: Laraaji & Lyghte's _Celestial Realms_: "Celestial Realms" Date: Fri, 23 Oct 2020 15:12:06 +0200 In-Reply-To: <3102580.bT80LyP3VS@ravel> (Olivier Certner's message of "Fri, 23 Oct 2020 15:00:36 +0200") Message-ID: <87ft65f5nd.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: Olivier Certner writes: > Small question from a noob on GNU projects. I don't see any commit from > you applying this. My origin repo is: https://git.savannah.gnu.org/git/ > emacs.git. Could this be because it is not the off [...] 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 (-) Olivier Certner writes: > Small question from a noob on GNU projects. I don't see any commit from > you applying this. My origin repo is: https://git.savannah.gnu.org/git/ > emacs.git. Could this be because it is not the official repo? I'm looking at > 'master'. Or maybe you didn't push there yet? Yup; forgot to push. Should be done now. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no