From unknown Tue Aug 19 21:03:24 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#45454 <45454@debbugs.gnu.org> To: bug#45454 <45454@debbugs.gnu.org> Subject: Status: 27.1; Help for EIEIO constructors has two consecutive spaces Reply-To: bug#45454 <45454@debbugs.gnu.org> Date: Wed, 20 Aug 2025 04:03:24 +0000 retitle 45454 27.1; Help for EIEIO constructors has two consecutive spaces reassign 45454 emacs submitter 45454 Tim Landscheidt severity 45454 minor tag 45454 patch fixed thanks From debbugs-submit-bounces@debbugs.gnu.org Sun Dec 27 06:50:40 2020 Received: (at submit) by debbugs.gnu.org; 27 Dec 2020 11:50:40 +0000 Received: from localhost ([127.0.0.1]:60374 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ktUZL-0002Nd-Ol for submit@debbugs.gnu.org; Sun, 27 Dec 2020 06:50:40 -0500 Received: from lists.gnu.org ([209.51.188.17]:35802) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ktUZJ-0002NT-H4 for submit@debbugs.gnu.org; Sun, 27 Dec 2020 06:50:38 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:36034) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ktUZJ-0005i6-7Q for bug-gnu-emacs@gnu.org; Sun, 27 Dec 2020 06:50:37 -0500 Received: from andalucia.tim-landscheidt.de ([2a01:4f8:1c1c:d4d0::1]:44564) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ktUZC-0000dQ-3A for bug-gnu-emacs@gnu.org; Sun, 27 Dec 2020 06:50:36 -0500 Received: from dslb-090-186-126-124.090.186.pools.vodafone-ip.de ([90.186.126.124]:56640 helo=passepartout.tim-landscheidt.de) by andalucia.tim-landscheidt.de with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1ktUZ5-0001zN-SG for bug-gnu-emacs@gnu.org; Sun, 27 Dec 2020 12:50:23 +0100 From: Tim Landscheidt To: bug-gnu-emacs@gnu.org Subject: 27.1; Help for EIEIO constructors has two consecutive spaces Organization: http://www.tim-landscheidt.de/ Date: Sun, 27 Dec 2020 11:50:23 +0000 Message-ID: <87im8npiww.fsf@passepartout.tim-landscheidt.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Received-SPF: pass client-ip=2a01:4f8:1c1c:d4d0::1; envelope-from=tim@tim-landscheidt.de; helo=andalucia.tim-landscheidt.de 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, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) 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: -2.4 (--) --=-=-= Content-Type: text/plain X-Debbugs-CC: David Engster Severity: minor Tags: patch For non-autoloaded EIEIO constructor functions, eieio-help-constructor will output two consecutive spaces. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-Do-not-output-two-spaces-for-non-autoloaded-object-c.patch >From 8f1b42ed9fb6a7f935c12a8caac6958d90c79eb6 Mon Sep 17 00:00:00 2001 From: Tim Landscheidt Date: Thu, 25 Jan 2018 02:55:44 +0000 Subject: [PATCH] ; Do not output two spaces for non-autoloaded object constructor functions * lisp/emacs-lisp/eieio-opt.el (eieio-help-constructor): Amend format to avoid two spaces for non-autoloaded object constructor functions. Copyright-paperwork-exempt: yes --- lisp/emacs-lisp/eieio-opt.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/emacs-lisp/eieio-opt.el b/lisp/emacs-lisp/eieio-opt.el index 59af7e12d2..3b222b9312 100644 --- a/lisp/emacs-lisp/eieio-opt.el +++ b/lisp/emacs-lisp/eieio-opt.el @@ -136,9 +136,9 @@ eieio-help-constructor (def (symbol-function ctr))) (goto-char (point-min)) (prin1 ctr) - (insert (format " is an %s object constructor function" + (insert (format " is an %sobject constructor function" (if (autoloadp def) - "autoloaded" + "autoloaded " ""))) (when (and (autoloadp def) (null location)) -- 2.26.2 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sun Dec 27 18:40:05 2020 Received: (at 45454) by debbugs.gnu.org; 27 Dec 2020 23:40:05 +0000 Received: from localhost ([127.0.0.1]:33857 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ktfdt-0001Je-CZ for submit@debbugs.gnu.org; Sun, 27 Dec 2020 18:40:05 -0500 Received: from quimby.gnus.org ([95.216.78.240]:36772) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ktfdq-0001J1-Lq for 45454@debbugs.gnu.org; Sun, 27 Dec 2020 18:40:03 -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=cz7EN+HtkmRFSSrGxtZ4b0FCz5C7+AbJyx1JBUiq6a4=; b=bSUK9eG3CSTVzhwWTYIokb5l/f Wm1j9LgNQSynLhitmiX20Pcoq/NwuJfSmy5mRuMfKOS8QLpNIm1U00bTWZu7VcZXGJB1J3GI6V3rC dw0VpO9D1FSwmsg/UxSbw6YehSRedx4akNs3V+sRm7vOMeQ5YjfS+VEaqznSlZ7fIx2U=; 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 1ktfdh-0005ah-In; Mon, 28 Dec 2020 00:39:56 +0100 From: Lars Ingebrigtsen To: Tim Landscheidt Subject: Re: bug#45454: 27.1; Help for EIEIO constructors has two consecutive spaces References: <87im8npiww.fsf@passepartout.tim-landscheidt.de> X-Now-Playing: Marianne Faithfull's _Broken English_: "Brain Drain" Date: Mon, 28 Dec 2020 00:39:52 +0100 In-Reply-To: <87im8npiww.fsf@passepartout.tim-landscheidt.de> (Tim Landscheidt's message of "Sun, 27 Dec 2020 11:50:23 +0000") Message-ID: <87r1na6con.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: Tim Landscheidt writes: > * lisp/emacs-lisp/eieio-opt.el (eieio-help-constructor): Amend format > to avoid two spaces for non-autoloaded object constructor functions. > > Copyright-paperwork-exempt: yes 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: 45454 Cc: david engster , 45454@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 (-) Tim Landscheidt writes: > * lisp/emacs-lisp/eieio-opt.el (eieio-help-constructor): Amend format > to avoid two spaces for non-autoloaded object constructor functions. > > Copyright-paperwork-exempt: yes Looks good to me; I've applied this to Emacs 28. This is your fifth tiny change to Emacs, but looking over the other changes, I think we're still below the limit. But this means that you're cumulatively getting close to the maximum before the FSF needs copyright assignment papers for your changes to Emacs. Would you be willing to sign such papers now to expedite applying any further patches from you in the future? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Sun Dec 27 18:40:09 2020 Received: (at control) by debbugs.gnu.org; 27 Dec 2020 23:40:10 +0000 Received: from localhost ([127.0.0.1]:33860 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ktfdx-0001Jz-KG for submit@debbugs.gnu.org; Sun, 27 Dec 2020 18:40:09 -0500 Received: from quimby.gnus.org ([95.216.78.240]:36788) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ktfdw-0001JT-8O for control@debbugs.gnu.org; Sun, 27 Dec 2020 18:40: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=DuWKdlnLq1nfZDWdGixttDWcmSC0tBzkb/AupqNMPkc=; b=j0mnWBLGAp+4PhIWpT50y2ijtS H+2t2FhrP9YgOyu6cMAOjJ21BaPDu1RWFSD3Px2FPjyz2zdBt06olBdYjd98gDha5UI1iD3/6magc R9S6u6mxztEn74MQZb/yejhbfssWvtKZlCeJpcVIn7wOgMEmYsCg5d4wWteAd2UQ3zso=; 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 1ktfdo-0005ap-HZ for control@debbugs.gnu.org; Mon, 28 Dec 2020 00:40:02 +0100 Date: Mon, 28 Dec 2020 00:39:59 +0100 Message-Id: <87pn2u6cog.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #45454 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 45454 fixed close 45454 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 45454 fixed close 45454 28.1 quit From debbugs-submit-bounces@debbugs.gnu.org Tue Dec 29 11:11:19 2020 Received: (at 45454) by debbugs.gnu.org; 29 Dec 2020 16:11:19 +0000 Received: from localhost ([127.0.0.1]:40014 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kuHah-0008W5-0G for submit@debbugs.gnu.org; Tue, 29 Dec 2020 11:11:19 -0500 Received: from andalucia.tim-landscheidt.de ([116.203.78.250]:34532) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kuHaf-0008Vu-5M for 45454@debbugs.gnu.org; Tue, 29 Dec 2020 11:11:18 -0500 Received: from dslb-090-186-126-124.090.186.pools.vodafone-ip.de ([90.186.126.124]:56104 helo=passepartout.tim-landscheidt.de) by andalucia.tim-landscheidt.de with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1kuHad-0002p9-EA; Tue, 29 Dec 2020 17:11:15 +0100 From: Tim Landscheidt To: Lars Ingebrigtsen Subject: Re: bug#45454: 27.1; Help for EIEIO constructors has two consecutive spaces Organization: http://www.tim-landscheidt.de/ References: <87im8npiww.fsf@passepartout.tim-landscheidt.de> <87r1na6con.fsf@gnus.org> Date: Tue, 29 Dec 2020 16:11:15 +0000 In-Reply-To: <87r1na6con.fsf@gnus.org> (Lars Ingebrigtsen's message of "Mon, 28 Dec 2020 00:39:52 +0100") Message-ID: <871rf8oan0.fsf@passepartout.tim-landscheidt.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 45454 Cc: 45454@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 (-) Lars Ingebrigtsen wrote: >> * lisp/emacs-lisp/eieio-opt.el (eieio-help-constructor): Amend format >> to avoid two spaces for non-autoloaded object constructor functions. >> Copyright-paperwork-exempt: yes > Looks good to me; I've applied this to Emacs 28. > This is your fifth tiny change to Emacs, but looking over the other > changes, I think we're still below the limit. > But this means that you're cumulatively getting close to the maximum > before the FSF needs copyright assignment papers for your changes to > Emacs. Would you be willing to sign such papers now to expedite > applying any further patches from you in the future? Yes; in 2018, I (IIRC unpromptedly) started the process (gnu.org #1268668), but I think it got stuck. From debbugs-submit-bounces@debbugs.gnu.org Tue Dec 29 21:53:28 2020 Received: (at 45454) by debbugs.gnu.org; 30 Dec 2020 02:53:28 +0000 Received: from localhost ([127.0.0.1]:40599 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kuRc8-0007FJ-0m for submit@debbugs.gnu.org; Tue, 29 Dec 2020 21:53:28 -0500 Received: from quimby.gnus.org ([95.216.78.240]:60452) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kuRc6-0007F7-KK for 45454@debbugs.gnu.org; Tue, 29 Dec 2020 21:53:27 -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=Y64UbZt0HAkZW5TE/zxXOm/GJfDUvrRAtXf2r1Vk/s8=; b=TlF/roqFNLon2kmVavvVsl2U4g cj1EDbJF3Eo4mlbybnWcrFR18LQhdHezHfUbKPbF9sjIkbbk/fsAxVIkU4rE2OjRCObLh53i9bCqm ULE7LKo/XG21VNDAdJqigxnwnzkhCkEJG2UkBbWenVZmjF7uHeGnbLDfJ4Zzsfm4Moxg=; 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 1kuRbx-00015Q-Ja; Wed, 30 Dec 2020 03:53:20 +0100 From: Lars Ingebrigtsen To: Tim Landscheidt Subject: Re: bug#45454: 27.1; Help for EIEIO constructors has two consecutive spaces References: <87im8npiww.fsf@passepartout.tim-landscheidt.de> <87r1na6con.fsf@gnus.org> <871rf8oan0.fsf@passepartout.tim-landscheidt.de> Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAABGdBTUEAALGPC/xhBQAAACBj SFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAElBMVEVeMjCKSzkXDRSj Z1ezhGj///+MK9mlAAAAAWJLR0QF+G/pxwAAAAd0SU1FB+QMHgIkBbYx/94AAAGVSURBVDjLrZTh leMgDISF2AJQcAEyuQLMygXcLvRf00lAHHD+Hi8vifnsGTEIA1B6D5ZrAEBK+kn6xwVXwUZsAFNC 6MPVE57ILC8w5oHD1n47SMugt8cK/AXCCvb/B64lwuM9aZXfAWt1uxBOUjgUQtokY3qugGPJ+yny 8YQTyb4Y4BVonD/bDTQLkVoUqIdfAOp8UYtPALFUvdBy4yoF6CRnmCxe68DkDvt+LoCRPcSDOc1A Q+TgSGKWAOjfAAxQNJAJ5/ZRR9toBXp1A05OBVqpm0FCBTUbyH4BPUN1keMOOAqReAl3ABQz6Owj TqAlomWF5DPOwCIBMwEKC+hS+kgOkOT+BFmPJ2C5ebALdggeo6iSO2AFRKQRdgvdMuoAWY1Nq4Gz BFLSgLkrGhtef+OQgpZvfhjIW4hwasNYuKGlNdpQBYPIAGhp5VZ4/N7rXzvP8K06TW90N/kCVtgL TCfn+Kq1rxzG3S3PXaAW3ZsPEI+vQiMruLQQWIvNWym94a63gAPULYDSVz5p/bFXz7FnZPoHnpKa sWn/yd8AAAAldEVYdGRhdGU6Y3JlYXRlADIwMjAtMTItMzBUMDI6MzY6MDUrMDA6MDDoTYxrAAAA JXRFWHRkYXRlOm1vZGlmeQAyMDIwLTEyLTMwVDAyOjM2OjA1KzAwOjAwmRA01wAAAABJRU5ErkJg gg== X-Now-Playing: David Bowie's _ChangesTwoBowie_: "Ashes To Ashes" Date: Wed, 30 Dec 2020 03:53:16 +0100 In-Reply-To: <871rf8oan0.fsf@passepartout.tim-landscheidt.de> (Tim Landscheidt's message of "Tue, 29 Dec 2020 16:11:15 +0000") Message-ID: <878s9gromb.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: Tim Landscheidt writes: > Yes; in 2018, I (IIRC unpromptedly) started the process > (gnu.org #1268668), but I think it got stuck. Hm. Did it get stuck on the FSF side or because of something else? 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: 45454 Cc: 45454@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 (-) Tim Landscheidt writes: > Yes; in 2018, I (IIRC unpromptedly) started the process > (gnu.org #1268668), but I think it got stuck. Hm. Did it get stuck on the FSF side or because of something else? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Wed Dec 30 00:59:53 2020 Received: (at 45454) by debbugs.gnu.org; 30 Dec 2020 05:59:53 +0000 Received: from localhost ([127.0.0.1]:40737 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kuUWX-0000zD-KR for submit@debbugs.gnu.org; Wed, 30 Dec 2020 00:59:53 -0500 Received: from andalucia.tim-landscheidt.de ([116.203.78.250]:34550) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kuUWV-0000z2-TH for 45454@debbugs.gnu.org; Wed, 30 Dec 2020 00:59:52 -0500 Received: from dslb-090-186-126-124.090.186.pools.vodafone-ip.de ([90.186.126.124]:35546 helo=passepartout.tim-landscheidt.de) by andalucia.tim-landscheidt.de with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1kuUWT-0007zj-VC; Wed, 30 Dec 2020 06:59:50 +0100 From: Tim Landscheidt To: Lars Ingebrigtsen Subject: Re: bug#45454: 27.1; Help for EIEIO constructors has two consecutive spaces Organization: http://www.tim-landscheidt.de/ References: <87im8npiww.fsf@passepartout.tim-landscheidt.de> <87r1na6con.fsf@gnus.org> <871rf8oan0.fsf@passepartout.tim-landscheidt.de> <878s9gromb.fsf@gnus.org> Date: Wed, 30 Dec 2020 05:59:49 +0000 In-Reply-To: <878s9gromb.fsf@gnus.org> (Lars Ingebrigtsen's message of "Wed, 30 Dec 2020 03:53:16 +0100") Message-ID: <87h7o3n8a2.fsf@passepartout.tim-landscheidt.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 45454 Cc: 45454@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 (-) Lars Ingebrigtsen wrote: >> Yes; in 2018, I (IIRC unpromptedly) started the process >> (gnu.org #1268668), but I think it got stuck. > Hm. Did it get stuck on the FSF side or because of something else? I don't know. The last mail I got was an acknowledgement from Theodore Teah on February 20, 2018 saying (with regard to the scan of my signed assignment form which initially was too large to send by mail): "I downloaded without problem and it's crystal. What can I say we all have our limits and some might be a bit too low :) Thank you. I'll get it back to you shortly." But I'm happy to sign the form again. From debbugs-submit-bounces@debbugs.gnu.org Wed Dec 30 22:35:22 2020 Received: (at 45454) by debbugs.gnu.org; 31 Dec 2020 03:35:22 +0000 Received: from localhost ([127.0.0.1]:51640 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kuokD-0001od-So for submit@debbugs.gnu.org; Wed, 30 Dec 2020 22:35:22 -0500 Received: from quimby.gnus.org ([95.216.78.240]:43892) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kuokC-0001oO-N5 for 45454@debbugs.gnu.org; Wed, 30 Dec 2020 22:35:21 -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=V6ybsscCMTQHhogv6UHbGpxMMmUReopC5xkfB6yb61Q=; b=hh44xs+6Qcv1dd8fqzQZuIMtpG 32HBVfpdk0ELpjWw/ndHEm9IbOfgUEN7P8FFkrkoADClBlWHA+vLHNXvaHUKFIjU78nR2XMeSbxMB wT0UpvNm9SJKA7RfFpo+/FzEqc08MMuktaX5IJPL4YNoYQCugDQ1z25fCLkBdXoRPzx0=; 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 1kuok4-0001Qr-MO; Thu, 31 Dec 2020 04:35:15 +0100 From: Lars Ingebrigtsen To: Tim Landscheidt Subject: Re: bug#45454: 27.1; Help for EIEIO constructors has two consecutive spaces References: <87im8npiww.fsf@passepartout.tim-landscheidt.de> <87r1na6con.fsf@gnus.org> <871rf8oan0.fsf@passepartout.tim-landscheidt.de> <878s9gromb.fsf@gnus.org> <87h7o3n8a2.fsf@passepartout.tim-landscheidt.de> Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAABGdBTUEAALGPC/xhBQAAACBj SFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAElBMVEVpQUqNbGehgnmr j4ykPFb////1tcpiAAAAAWJLR0QF+G/pxwAAAAd0SU1FB+QMHwMiBsAcBLAAAAG7SURBVDjLbZOL ecMwCIRR3QEALRChBWqpA3T/qXqAZLsPJfmS6AcdcDIVMR0qWNbnnPgMfM1BImpTzcbwvT7Ooh4w AUSbrNX6/KBjZbBIYbzxEul9gdMzpID6NnTmC6BDhoo81xwAY5j0J1CIGdNh0Bz0jFdEAgwzMSp3 TYirlekN5Zr91FDFUepdyi/QAQT7dT41mjRtjMMtRxL17xRhP6P1884gX4Vpr62RO4XeP/8Fwsf8 BST/MH09AKKvgl38zrhARbmKdhoahBkO/AWwq3Yg7pUQpyPeuSmmGxqPubxI+2kiS9xtDIrpljrQ u5ee8WVnvCmcGlkPRRqnxqFznKjHEzwNzbg+jKowquUc4k1xlXzsZwBXxikZ7gBN9BBfwIsoPhLV NYwYTl65EhmzntH5AviB+2I+UAD13Q2Yo9x3H9XapYJxHlwWwLVwgLO8TZLXNR65AIJJWgmjbsCF 1r0ygVHpCfljsw30JycaXBm3szH2uH2a4GEUMmpbR+l2sIV4lXOBq8TMqG3kUZRGXfequsgfYFdV YTm5r9nO3aADTlOdAPgDEpWGc1sjnUvA9+VJwNn5I/4xxG+tY0pqahonDQAAACV0RVh0ZGF0ZTpj cmVhdGUAMjAyMC0xMi0zMVQwMzozNDowNiswMDowMK6uDt8AAAAldEVYdGRhdGU6bW9kaWZ5ADIw MjAtMTItMzFUMDM6MzQ6MDUrMDA6MDDuG6z+AAAAAElFTkSuQmCC X-Now-Playing: Simple Minds's _New Gold Dream (81-82-83-84)_: "King is White and in the Crowd" Date: Thu, 31 Dec 2020 04:35:11 +0100 In-Reply-To: <87h7o3n8a2.fsf@passepartout.tim-landscheidt.de> (Tim Landscheidt's message of "Wed, 30 Dec 2020 05:59:49 +0000") Message-ID: <874kk2ps0g.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: Tim Landscheidt writes: > I don't know. The last mail I got was an acknowledgement > from Theodore Teah on February 20, 2018 saying (with regard > to the scan of my signed assignment form which initially was > too large to s [...] 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: 45454 Cc: 45454@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 (-) Tim Landscheidt writes: > I don't know. The last mail I got was an acknowledgement > from Theodore Teah on February 20, 2018 saying (with regard > to the scan of my signed assignment form which initially was > too large to send by mail): "I downloaded without problem > and it's crystal. What can I say we all have our limits and > some might be a bit too low :) Thank you. I'll get it back > to you shortly." Oops. I'll ping the copyright clerk and see what's up. > But I'm happy to sign the form again. Hopefully that won't be necessary. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From unknown Tue Aug 19 21:03:24 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 28 Jan 2021 12:24:08 +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