From debbugs-submit-bounces@debbugs.gnu.org Sun Jun 13 13:47:47 2021 Received: (at submit) by debbugs.gnu.org; 13 Jun 2021 17:47:47 +0000 Received: from localhost ([127.0.0.1]:44331 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lsUD4-0003zl-Lf for submit@debbugs.gnu.org; Sun, 13 Jun 2021 13:47:47 -0400 Received: from lists.gnu.org ([209.51.188.17]:49492) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lsUD3-0003zd-Hd for submit@debbugs.gnu.org; Sun, 13 Jun 2021 13:47:46 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:39958) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lsUD3-0003np-8t for bug-gnu-emacs@gnu.org; Sun, 13 Jun 2021 13:47:45 -0400 Received: from mailscanner.iro.umontreal.ca ([132.204.25.50]:33718) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lsUD0-0002pD-7u for bug-gnu-emacs@gnu.org; Sun, 13 Jun 2021 13:47:44 -0400 Received: from pmg1.iro.umontreal.ca (localhost.localdomain [127.0.0.1]) by pmg1.iro.umontreal.ca (Proxmox) with ESMTP id BCA7C100201 for ; Sun, 13 Jun 2021 13:47:38 -0400 (EDT) Received: from mail01.iro.umontreal.ca (unknown [172.31.2.1]) by pmg1.iro.umontreal.ca (Proxmox) with ESMTP id 830211001FB for ; Sun, 13 Jun 2021 13:47:37 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=iro.umontreal.ca; s=mail; t=1623606457; bh=v7ncB9Hd0zLdALe+ta/SSs1mCNiXkMoQHO5Fe6mMqSU=; h=From:To:Subject:Date:From; b=nNBXuGe6yYGwCXAMubUeE/G0V/jO+QmUpjlt+1Slht7S5ymaS3UMdHGxtCdPXB+DX PpVB4IpNVb0qmmS30BadNMIs24y+bM2PhVMcIapEStpSlwB07dpV+mw3pi95gSm7Lo 5HCic4x4xpUEXBa6AXmtkPCxZeQeWyArPq66rmKnVBF9CEMEbM+s74TV628IfSiB/F L3gx7YT/NUzk0y7puEl0PVV5u/C1Aj9JQ/MFvnrfnSTjlxd74Qh7Uhrx5rG0XaBPLg CeAMsonh/ryg6cWtMOEE6R+vamEJgJzlTLX1eHbmHJnz6TbAiBugSclAOixWgHd5H8 wGzprM5Ao30Cw== Received: from alfajor (69-196-163-239.dsl.teksavvy.com [69.196.163.239]) by mail01.iro.umontreal.ca (Postfix) with ESMTPSA id 649CF1201C9 for ; Sun, 13 Jun 2021 13:47:37 -0400 (EDT) From: Stefan Monnier To: bug-gnu-emacs@gnu.org Subject: 28.0.50; "docstring wider than 80" misfire Date: Sun, 13 Jun 2021 13:47:27 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-SPAM-INFO: Spam detection results: 0 ALL_TRUSTED -1 Passed through trusted hosts only via SMTP AWL -0.015 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DKIM_SIGNED 0.1 Message has a DKIM or DK signature, not necessarily valid DKIM_VALID -0.1 Message has at least one valid DKIM or DK signature DKIM_VALID_AU -0.1 Message has a valid DKIM or DK signature from author's domain X-SPAM-LEVEL: Received-SPF: pass client-ip=132.204.25.50; envelope-from=monnier@iro.umontreal.ca; helo=mailscanner.iro.umontreal.ca X-Spam_score_int: -42 X-Spam_score: -4.3 X-Spam_bar: ---- X-Spam_report: (-4.3 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) 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.3 (--) Package: Emacs Version: 28.0.50 Byte-compiling the declaration below complains that defalias `rudel-connect' docstring wider than 80 characters even though it stays within the 80 columns limit. Stefan (cl-defgeneric rudel-connect ((this rudel-protocol-backend) transport info info-callback &optional progress-callback) "Create a new connection through TRANSPORT according to the data in INFO. TRANSPORT has to be an object of a class derived from `rudel-transport'. INFO has to be a property list. INFO-CALLBACK has to be a function of two arguments which will be bound to THIS and INFO. When called, INFO-CALLBACK should return a modified version of the INFO argument in which no information is missing. When non-nil, PROGRESS-CALLBACK has to be a function that may be called repeatedly while the connection is established. Implementations can rely on the fact that the property :session in INFO contains the `rudel-session' object to which the new connection will be associated.") From debbugs-submit-bounces@debbugs.gnu.org Mon Jun 14 09:47:23 2021 Received: (at 49007) by debbugs.gnu.org; 14 Jun 2021 13:47:23 +0000 Received: from localhost ([127.0.0.1]:45383 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lsmvz-00009j-0K for submit@debbugs.gnu.org; Mon, 14 Jun 2021 09:47:23 -0400 Received: from quimby.gnus.org ([95.216.78.240]:38038) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lsmvx-0008V3-4O for 49007@debbugs.gnu.org; Mon, 14 Jun 2021 09:47:21 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Transfer-Encoding:Content-Type:MIME-Version:Message-ID :In-Reply-To:Date:References:Subject:Cc:To:From:Sender:Reply-To: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=9VFcv5kMF83SJ0l4K51N7XrKZ7iImXsHrZzcU+8m7m4=; b=BVyx/AfTKPCZjYnSQmTIWRHtRr TwRYzsUlCC2nLZAelM4vOF3Z3kpwifnjlEjNDsVtPdRTbBLRDSN5NsxeV8bxSCoEyH1m9qpuMv9r9 SDFNAbjzKp/JzFaFf3kT4r9DrubMe7aEpLxu9yg9WGmI4Nowm5PC66R1JVwsmD8FLE0E=; Received: from cm-84.212.220.105.getinternet.no ([84.212.220.105] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lsmvn-0001Nj-A7; Mon, 14 Jun 2021 15:47:13 +0200 From: Lars Ingebrigtsen To: Stefan Monnier Subject: Re: bug#49007: 28.0.50; "docstring wider than 80" misfire References: X-Now-Playing: 75 Dollar Bill's _I Was Real_: "Every Last Coffee or Tea" Date: Mon, 14 Jun 2021 15:47:10 +0200 In-Reply-To: (Stefan Monnier's message of "Sun, 13 Jun 2021 13:47:27 -0400") Message-ID: <87czsozhgh.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; charset=utf-8 Content-Transfer-Encoding: quoted-printable 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: Stefan Monnier writes: > Byte-compiling the declaration below complains that > > defalias `rudel-connect' docstring wider than 80 characters > > even though it stays within the 80 columns limit. > > Stefan > > (cl-defgeneri [...] 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.7 (/) X-Debbugs-Envelope-To: 49007 Cc: Stefan Kangas , 49007@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.7 (-) Stefan Monnier writes: > Byte-compiling the declaration below complains that > > defalias `rudel-connect' docstring wider than 80 characters > > even though it stays within the 80 columns limit. > > Stefan > > (cl-defgeneric rudel-connect ((this rudel-protocol-backend) transport > info info-callback > &optional progress-callback) > "Create a new connection through TRANSPORT according to the data in INF= O. Hm... the warning comes from the arglist being too long, which it indeed is: (documentation 'rudel-connect) =3D> "Create a new connection through TRANSPORT according to the data in INFO. [...] Implementations can rely on the fact that the property :session in INFO contains the =E2=80=98rudel-session=E2=80=99 object to which the new connection will be associated. (fn (THIS rudel-protocol-backend) TRANSPORT INFO INFO-CALLBACK &optional PR= OGRESS-CALLBACK)" Which comes from `help--make-usage-docstring'. However, when displaying the help, this `fn' bit is then massaged and folded (and placed at the start). So perhaps the correct fix here is to have the docstring width checker ignore those parts? Any opinions? --=20 (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Mon Jun 14 10:48:02 2021 Received: (at 49007) by debbugs.gnu.org; 14 Jun 2021 14:48:02 +0000 Received: from localhost ([127.0.0.1]:47421 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lsnsg-0002tp-GB for submit@debbugs.gnu.org; Mon, 14 Jun 2021 10:48:02 -0400 Received: from mailscanner.iro.umontreal.ca ([132.204.25.50]:7637) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lsnse-0002tQ-7D for 49007@debbugs.gnu.org; Mon, 14 Jun 2021 10:48:00 -0400 Received: from pmg1.iro.umontreal.ca (localhost.localdomain [127.0.0.1]) by pmg1.iro.umontreal.ca (Proxmox) with ESMTP id 1E35310028B; Mon, 14 Jun 2021 10:47:54 -0400 (EDT) Received: from mail01.iro.umontreal.ca (unknown [172.31.2.1]) by pmg1.iro.umontreal.ca (Proxmox) with ESMTP id 36EEA1001FC; Mon, 14 Jun 2021 10:47:52 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=iro.umontreal.ca; s=mail; t=1623682072; bh=r4Jw3oD6vrTf1ch4d97yhmu8rATzyzeF2vClKpezERE=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From; b=D1OaTAbr3pSzNBoc+KJqkL4MebbUaGgc4jLyXSfKbmSpBGZIN6YOUUkoyLjzhlw9d It2kWPvleWCqS7Y3fpzFvsLwNVlYkFBReaUDAtzOec++9yckXbWu2Rjbjs3W6W9WzI b0WDWdNbchO05KYXKz5BbPzN9/iRbnbwHaAT2xtFRC0WLHHEE9jv0HXeJQjvbom2qf 6KojqrYnBVewxcKSyPACZuivlSm1Ajw8Swwr6rYQBcMUaybThHdqSO4OCSa/3T7l8y O+KxU6ZaAG0ZBABV1c+YCGUigO0ZGIQeKoLFRqXhnCGVzafPIGjm0Qolq2Wr9aEyTP anw4ztGVQ2hiA== Received: from alfajor (69-196-163-239.dsl.teksavvy.com [69.196.163.239]) by mail01.iro.umontreal.ca (Postfix) with ESMTPSA id 06B3E1204DC; Mon, 14 Jun 2021 10:47:52 -0400 (EDT) From: Stefan Monnier To: Lars Ingebrigtsen Subject: Re: bug#49007: 28.0.50; "docstring wider than 80" misfire Message-ID: References: <87czsozhgh.fsf@gnus.org> Date: Mon, 14 Jun 2021 10:47:51 -0400 In-Reply-To: <87czsozhgh.fsf@gnus.org> (Lars Ingebrigtsen's message of "Mon, 14 Jun 2021 15:47:10 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-SPAM-INFO: Spam detection results: 0 ALL_TRUSTED -1 Passed through trusted hosts only via SMTP AWL -0.015 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DKIM_SIGNED 0.1 Message has a DKIM or DK signature, not necessarily valid DKIM_VALID -0.1 Message has at least one valid DKIM or DK signature DKIM_VALID_AU -0.1 Message has a valid DKIM or DK signature from author's domain X-SPAM-LEVEL: X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 49007 Cc: Stefan Kangas , 49007@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 (---) > Hm... the warning comes from the arglist being too long, which it indeed is: [...] > (fn (THIS rudel-protocol-backend) TRANSPORT INFO INFO-CALLBACK &optional PROGRESS-CALLBACK)" Ah, I see. > So perhaps the correct fix here is to have the docstring width checker > ignore those parts? Indeed: the (fn ...) on the last line of a docstring is not really part of the text, it's just a chunk of data that happens to be stored using its printed representation (I'm in part to blame for that design choice, and I don't really like it either, but here we are). Stefan From debbugs-submit-bounces@debbugs.gnu.org Tue Jun 15 09:34:24 2021 Received: (at 49007) by debbugs.gnu.org; 15 Jun 2021 13:34:24 +0000 Received: from localhost ([127.0.0.1]:48719 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lt9Cy-0007oO-FG for submit@debbugs.gnu.org; Tue, 15 Jun 2021 09:34:24 -0400 Received: from quimby.gnus.org ([95.216.78.240]:49766) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lt9Cv-0007o5-TD for 49007@debbugs.gnu.org; Tue, 15 Jun 2021 09:34:22 -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=vOa0u3SS6DPzTD2R9zj4zlAaCTPyPgjT6Vcw2IVWKGI=; b=uiNFfSSmMVnJ4dvKsQggzxY60h N/n3CtIGNhTkAtbEBRRxcKNYN7oPaaAsgxsRZo/MQieAGz1eUIlN2pVWC6qscev/5xgPlal3yfyxG l3tg7H5ho3dEI0xOjTdeajYSSpXmQ5j8/0coZdfmDNU+Kpwf4IguG8SHcmAqTTxhMPKE=; Received: from cm-84.212.220.105.getinternet.no ([84.212.220.105] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lt9Cm-0007DP-8j; Tue, 15 Jun 2021 15:34:14 +0200 From: Lars Ingebrigtsen To: Stefan Monnier Subject: Re: bug#49007: 28.0.50; "docstring wider than 80" misfire References: <87czsozhgh.fsf@gnus.org> Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAABGdBTUEAALGPC/xhBQAAACBj SFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAM1BMVEX+/v6inZpdW1qZ cVtSQzyqh3TX1NDIlXTRrJPr6efdxrclJCU1NDQaGRkgHh99gIH///9QJp/gAAAAAWJLR0QQlbIN LAAAAAd0SU1FB+UGDw0RDXjOCZkAAAGBSURBVEjHlZXLosIwCEQDIU8I/v/fXpJWe1eCLNTFHJlp CE3pFGBGwlxqClbNrfdMecSB3nujEtWnWkorJYcdpdSbeSphRynNZtXj+jRaaf2HBttTiUfeHUrO DcItBqCFmMgYYgbKktk74FrK0wdwMQsUgP1D0QeITWeuEiqLiGuqsjCvCWCk6ZfrCVSEFxAkOSgE IhghlIZ9GeCGOJmtYB6A2QtBRyVwDLG6nurRm2wcubiewBztJrS9Ke9H6wICasQUvQD+fo9wKe0u 1mYDIF4IVMUD6BWFfGCVA9zZ9x98B1jP1L0Bgz1g+/4AAuwBujUfgKq4AOEDqAFOBlj0RGCVSj8B LKEO+g+Y4gwT/FPvAh8gpA+0XjXn70DNZb6eg6vV3cm9zWc0uA7wLnXNtZ4TsPFmWzL+8ps17W1h +88mwxPfRabF8xEE7OgW/QrItuRusbtg3RcusLuvJ6X3bQjq03jPavgdRHrtvfCb+j3hvwJxS/c0 UVSf5jqbzD+3P3rvF5p8A/xkAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDIxLTA2LTE1VDEzOjE3OjEz KzAwOjAwhUJMdgAAACV0RVh0ZGF0ZTptb2RpZnkAMjAyMS0wNi0xNVQxMzoxNzoxMyswMDowMPQf 9MoAAAAASUVORK5CYII= X-Now-Playing: David Bowie's _Reality (1)_: "She'll Drive the Big Car" Date: Tue, 15 Jun 2021 15:34:11 +0200 In-Reply-To: (Stefan Monnier's message of "Mon, 14 Jun 2021 10:47:51 -0400") Message-ID: <87sg1juu98.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: Stefan Monnier writes: >> So perhaps the correct fix here is to have the docstring width checker >> ignore those parts? > > Indeed: the (fn ...) on the last line of a docstring is not really part > of the text, it's just a [...] 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.7 (/) X-Debbugs-Envelope-To: 49007 Cc: Stefan Kangas , 49007@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.7 (-) Stefan Monnier writes: >> So perhaps the correct fix here is to have the docstring width checker >> ignore those parts? > > Indeed: the (fn ...) on the last line of a docstring is not really part > of the text, it's just a chunk of data that happens to be stored using > its printed representation (I'm in part to blame for that design choice, > and I don't really like it either, but here we are). No matter where we go, there we are. I've now pushed a fix for this to Emacs 28 that fixes the test case. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Tue Jun 15 09:34:31 2021 Received: (at control) by debbugs.gnu.org; 15 Jun 2021 13:34:32 +0000 Received: from localhost ([127.0.0.1]:48722 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lt9D5-0007og-OJ for submit@debbugs.gnu.org; Tue, 15 Jun 2021 09:34:31 -0400 Received: from quimby.gnus.org ([95.216.78.240]:49780) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lt9D3-0007oM-8M for control@debbugs.gnu.org; Tue, 15 Jun 2021 09:34:29 -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=EngQhl0PlJPCmcXn9PKINiY8fPqw8EdPCVgA+lIDxy4=; b=SCXHgcmIupQuAEEtm/Uk+N61Eu Df3n0luI86W7RSsWMaeMuVixW873z64bnvw9HGrTgY8kYwi1BGPPqOjauQdR08+03shalc6rn9g0v 9myfhD9Si+QgeV07jRlqvkXIfxH4dkVENgARrq4n/wpCaH48OLvpIYZ3AEyT7W+2lWNI=; Received: from cm-84.212.220.105.getinternet.no ([84.212.220.105] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lt9Cv-0007DW-O9 for control@debbugs.gnu.org; Tue, 15 Jun 2021 15:34:23 +0200 Date: Tue, 15 Jun 2021 15:34:21 +0200 Message-Id: <87r1h3uu8y.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #49007 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: close 49007 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.7 (/) 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.7 (-) close 49007 28.1 quit From debbugs-submit-bounces@debbugs.gnu.org Tue Jun 15 11:54:45 2021 Received: (at 49007-done) by debbugs.gnu.org; 15 Jun 2021 15:54:45 +0000 Received: from localhost ([127.0.0.1]:50554 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ltBOm-0005yc-Ry for submit@debbugs.gnu.org; Tue, 15 Jun 2021 11:54:44 -0400 Received: from mailscanner.iro.umontreal.ca ([132.204.25.50]:13554) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ltBOl-0005yP-2L for 49007-done@debbugs.gnu.org; Tue, 15 Jun 2021 11:54:43 -0400 Received: from pmg3.iro.umontreal.ca (localhost [127.0.0.1]) by pmg3.iro.umontreal.ca (Proxmox) with ESMTP id B6242440B17; Tue, 15 Jun 2021 11:54:36 -0400 (EDT) Received: from mail01.iro.umontreal.ca (unknown [172.31.2.1]) by pmg3.iro.umontreal.ca (Proxmox) with ESMTP id CE772440149; Tue, 15 Jun 2021 11:54:35 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=iro.umontreal.ca; s=mail; t=1623772475; bh=X16EyR2Dv+XUCcaGOPs+UgTH+EubftdRyUx6YiyEwZk=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From; b=ACIzlKISTHXTuAEravgbXJiURsMnUJ0GuWU63V0GLluju9t3YOVlMcY/ze8vpRdNc QNLKMaRcjORT+Cez+M9MiDqqfeYFfYZ8yLaIf7L9RyFRjAoThfX4RK5sTWQMraHtDJ 6dlNYMEm8BXwNtlQp7W9/SnYqwXe/JbC5NHsKQzkFJb1elSCqjU+s9K5CW80KQaN2Y J7ZcP17iIbHDRlgxi1gxkPhqNL059ibHT4rjRLXoIYEx3WJszxwbZyqHaKC76Ub6BA TUAbaGUNAe19sPk5oKBse6uiAPeIRPDuGElcRurTL9Zi8o/ZeOQ6dYu/lmX0gA3sMk Q/wQnbzG1u/8w== Received: from alfajor (69-196-163-239.dsl.teksavvy.com [69.196.163.239]) by mail01.iro.umontreal.ca (Postfix) with ESMTPSA id 9AE021201CF; Tue, 15 Jun 2021 11:54:35 -0400 (EDT) From: Stefan Monnier To: Lars Ingebrigtsen Subject: Re: bug#49007: 28.0.50; "docstring wider than 80" misfire Message-ID: References: <87czsozhgh.fsf@gnus.org> <87sg1juu98.fsf@gnus.org> Date: Tue, 15 Jun 2021 11:54:34 -0400 In-Reply-To: <87sg1juu98.fsf@gnus.org> (Lars Ingebrigtsen's message of "Tue, 15 Jun 2021 15:34:11 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-SPAM-INFO: Spam detection results: 0 ALL_TRUSTED -1 Passed through trusted hosts only via SMTP AWL -0.033 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DKIM_SIGNED 0.1 Message has a DKIM or DK signature, not necessarily valid DKIM_VALID -0.1 Message has at least one valid DKIM or DK signature DKIM_VALID_AU -0.1 Message has a valid DKIM or DK signature from author's domain X-SPAM-LEVEL: X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 49007-done Cc: 49007-done@debbugs.gnu.org, Stefan Kangas 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 (---) > I've now pushed a fix for this to Emacs 28 that fixes the test case. Thanks, Stefan From unknown Sat Jun 21 05:12:33 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 14 Jul 2021 11:24:04 +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