From unknown Sat Aug 09 13:19:02 2025 X-Loop: help-debbugs@gnu.org Subject: bug#48495: 28.0.50; [PATCH] * lisp/emacs-lisp/shortdoc.el: Fix function in the list group Resent-From: Alexandr Vityazev Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 18 May 2021 08:02:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 48495 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: 48495@debbugs.gnu.org X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.162132487711110 (code B ref -1); Tue, 18 May 2021 08:02:01 +0000 Received: (at submit) by debbugs.gnu.org; 18 May 2021 08:01:17 +0000 Received: from localhost ([127.0.0.1]:54376 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1liufF-0002t8-4l for submit@debbugs.gnu.org; Tue, 18 May 2021 04:01:17 -0400 Received: from lists.gnu.org ([209.51.188.17]:50712) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1liufB-0002sx-DC for submit@debbugs.gnu.org; Tue, 18 May 2021 04:01:15 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:40652) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1liufB-00016B-4i for bug-gnu-emacs@gnu.org; Tue, 18 May 2021 04:01:13 -0400 Received: from mout01.posteo.de ([185.67.36.65]:40199) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1liuf3-0005Nw-3w for bug-gnu-emacs@gnu.org; Tue, 18 May 2021 04:01:12 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id BB50524002B for ; Tue, 18 May 2021 10:00:53 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.org; s=2017; t=1621324853; bh=MKwfLkjeUsVXf6FWekX2STL+AB+N+VfXd63Lv0JXm6E=; h=From:To:Subject:Date:From; b=p3yceecUQ/1/KKX4mMQKD+YGNT40EphEy2463Ig03pKnmZi+CgCdHWCGVigP3FTQX kT/zgg0AEcuJYK4jd1ap60DNgjYrh0Eqa9EAPaKig3J7/w3BaZnRAPMzIkwIpuim/E Vv5nMW4QZBnjqlwHe5p9mAvMBpZe5V/m/isW2CXy8R9YZA3fKUepsKUiyMo7RivxVz e2viSpt6/OkEbnA1Druwyvzsu5/faLNKDF5uZZKZtGG4Y9S62pFJCP23ZLgBhbXCTY PHz8jTvRbl9CYU+7OJ9/soql2uNTxdwVMji478ujiZG1rQ2eSbUPCLfg420osQFUaU FsVe71/InivNg== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4FkpN46qV0z6tmW for ; Tue, 18 May 2021 10:00:52 +0200 (CEST) From: Alexandr Vityazev Date: Tue, 18 May 2021 08:01:08 +0000 Message-ID: <87a6os31yz.fsf@posteo.net> MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=185.67.36.65; envelope-from=avityazev@posteo.org; helo=mout01.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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-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 (--) Fix eval function for length= in the list group. --- lisp/emacs-lisp/shortdoc.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/shortdoc.el b/lisp/emacs-lisp/shortdoc.el index 9b31d68703..0320e17182 100644 --- a/lisp/emacs-lisp/shortdoc.el +++ b/lisp/emacs-lisp/shortdoc.el @@ -625,7 +625,7 @@ There can be any number of :example/:result elements." (length> :eval (length> '(a b c) 1)) (length= - :eval (length> '(a b c) 3)) + :eval (length= '(a b c) 3)) (safe-length :eval (safe-length '(a b c)))) -- 2.31.1 -- Alexandr Vityazev From unknown Sat Aug 09 13:19:02 2025 X-Loop: help-debbugs@gnu.org Subject: bug#48495: 28.0.50; [PATCH] * lisp/emacs-lisp/shortdoc.el: Fix function in the list group Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 18 May 2021 13:37:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 48495 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Alexandr Vityazev Cc: 48495@debbugs.gnu.org Received: via spool by 48495-submit@debbugs.gnu.org id=B48495.16213450085286 (code B ref 48495); Tue, 18 May 2021 13:37:02 +0000 Received: (at 48495) by debbugs.gnu.org; 18 May 2021 13:36:48 +0000 Received: from localhost ([127.0.0.1]:54694 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1liztv-0001NC-Oc for submit@debbugs.gnu.org; Tue, 18 May 2021 09:36:47 -0400 Received: from quimby.gnus.org ([95.216.78.240]:42026) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1liztu-0001My-F4 for 48495@debbugs.gnu.org; Tue, 18 May 2021 09:36:47 -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=kRzK8bkjbb/ASg8TfGn4LKJIdX1bSS+l+NYkG8XXCTM=; b=MHCB8aFAsuXJcaV81+mnxsWLE+ eQ/iNGTFJnA4G76tczxZZ8wSovJKPZtKOiiXGJ7PBNGpu80wR1eK+YbOr4Aip+ghy20+k5evaM3hK p2Y40Gwk+uyVXi962wF2iagwc1XIwIzYgrUz8RMfXkt+Hj7qX3bKzp/44puEkqpJZ2I0=; 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 1liztl-0005dU-Tq; Tue, 18 May 2021 15:36:40 +0200 From: Lars Ingebrigtsen References: <87a6os31yz.fsf@posteo.net> X-Now-Playing: Zola Jesus's _Taiga_: "Hollow" Date: Tue, 18 May 2021 15:36:37 +0200 In-Reply-To: <87a6os31yz.fsf@posteo.net> (Alexandr Vityazev's message of "Tue, 18 May 2021 08:01:08 +0000") Message-ID: <87wnrwf9ju.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: Alexandr Vityazev writes: > Fix eval function for length= in the list group. Thanks; applied to Emacs 28. 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 (-) Alexandr Vityazev writes: > Fix eval function for length= in the list group. Thanks; applied to Emacs 28. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Tue May 18 09:36:52 2021 Received: (at control) by debbugs.gnu.org; 18 May 2021 13:36:52 +0000 Received: from localhost ([127.0.0.1]:54697 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1liztz-0001NU-V2 for submit@debbugs.gnu.org; Tue, 18 May 2021 09:36:52 -0400 Received: from quimby.gnus.org ([95.216.78.240]:42040) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lizty-0001N4-Ed for control@debbugs.gnu.org; Tue, 18 May 2021 09:36:50 -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=uNUP8tnlqAINckTQjYv5nfjrowe98U3Aoj+Da+C1MIk=; b=QGmoliqTPJZ19um/fT+PbC71vz Pf7BgLg9f3AbOoL3NtQDvqskIuMDhB0ITbjUL13i0u6WfyrQNvhNQBvSs7k76wqxVoigyShewJNr8 K0YfNQ6SxUuGO///0qEFr7kzGLHX32YSlxDp4AXo/yHujN7V5YdY3QggsNHZhUQy+rMg=; 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 1liztq-0005dc-L2 for control@debbugs.gnu.org; Tue, 18 May 2021 15:36:44 +0200 Date: Tue, 18 May 2021 15:36:42 +0200 Message-Id: <87v97gf9jp.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #48495 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 48495 fixed close 48495 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 48495 fixed close 48495 28.1 quit