From unknown Thu Jun 19 16:19:10 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#51274 <51274@debbugs.gnu.org> To: bug#51274 <51274@debbugs.gnu.org> Subject: Status: 29.0.50; fix parens of display-buffer-alist in emacs docs Reply-To: bug#51274 <51274@debbugs.gnu.org> Date: Thu, 19 Jun 2025 23:19:10 +0000 retitle 51274 29.0.50; fix parens of display-buffer-alist in emacs docs reassign 51274 emacs submitter 51274 pmauro@posteo.net severity 51274 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 18 14:44:40 2021 Received: (at submit) by debbugs.gnu.org; 18 Oct 2021 18:44:40 +0000 Received: from localhost ([127.0.0.1]:48592 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mcXcl-00076P-Dl for submit@debbugs.gnu.org; Mon, 18 Oct 2021 14:44:40 -0400 Received: from lists.gnu.org ([209.51.188.17]:34254) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mcXbZ-00074Y-0D for submit@debbugs.gnu.org; Mon, 18 Oct 2021 14:43:27 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:39310) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mcXbY-0003aq-F3 for bug-gnu-emacs@gnu.org; Mon, 18 Oct 2021 14:43:24 -0400 Received: from mout01.posteo.de ([185.67.36.65]:53525) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mcXbU-0003ov-Il for bug-gnu-emacs@gnu.org; Mon, 18 Oct 2021 14:43:24 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 40FD8240027 for ; Mon, 18 Oct 2021 20:43:15 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1634582595; bh=dbZqrfZsnsVDmriuoVu1UkKWnKvwONyHEZhk62ZTSnQ=; h=Date:From:To:Subject:From; b=bISfJ4tYVOY/WjGGldYWTG0aZRL+iOalwh7w6WMwR5fIdHNhoEFBOm/zU+V7WLz4e sd7TbRJsf0PMvSDdDYc6U/NVOfW9EAHbkWT6cx5iUGUJ7mNw8zBfPMyw92FZVkpHru 5QCm5qYZrQKouHUAFb8BbphiXRi1RYIvzP5o/awHlyUCPxWhUllTYOKTLnUZw7Wlk4 VxDAKDBFjMrVbcHg29s7/Bzid2c5D9UW3tAKc/+IH4EY4tsqeH0wAB/OV6g+/A6NVk tbUMmBMAQkNwcBrqM/6vhN3Dzhf8O6qncAOqe9bfrhGT6msCnSoc/XQ8sfwlUnH9Rc kECcJU0x5zY+A== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4HY5Nf4rZxz9rxR for ; Mon, 18 Oct 2021 20:43:14 +0200 (CEST) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=_238d03a6c9b64131dd3276e9c2a24a94" Date: Mon, 18 Oct 2021 18:43:14 +0000 From: pmauro@posteo.net To: bug-gnu-emacs@gnu.org Subject: 29.0.50; fix parens of display-buffer-alist in emacs docs Message-ID: <5b0166498f6645f83aa04ad18f13d67d@posteo.net> Received-SPF: pass client-ip=185.67.36.65; envelope-from=pmauro@posteo.net; 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_H2=-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-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Mon, 18 Oct 2021 14:44:37 -0400 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 (--) --=_238d03a6c9b64131dd3276e9c2a24a94 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8; format=flowed The section "20.6.1 How display-buffer works" of the Emacs manual has an example wich creates a malformed alist, whose first element is a string instead of a list. This value is used to customize display-buffer-alist. In other sections of the manual, like "20.6.2 Displaying non-editable buffers.", the alist is correctly formed. The attachment is a patch with the fix. Huge thanks for all your work :) =C2=A1Abrazos! Pedro. In GNU Emacs 29.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version=20 3.24.30, cairo version 1.17.4) of 2021-10-14 built on pedro-latitude5411 Repository revision: 8785d70601c5ef02f20604dc3cd85d6c73d7aef7 Repository branch: master Windowing system distributor 'The X.Org Foundation', version=20 11.0.12013000 System Description: Manjaro Linux --=_238d03a6c9b64131dd3276e9c2a24a94 Content-Transfer-Encoding: base64 Content-Type: text/x-diff; name=0001-doc-emacs-windows.texi-Doc-fix.patch Content-Disposition: attachment; filename=0001-doc-emacs-windows.texi-Doc-fix.patch; size=685 RnJvbSA5MDU4MjY0MTU3MmU5ZWY3NTI4NTgwYmJjM2Y1MjM5YjIwZDg3N2ZiIE1vbiBTZXAgMTcg MDA6MDA6MDAgMjAwMQpGcm9tOiBQZWRybyBNYXVybyA8cGVkcm8uai5nYXJjaWFAZGVzcGVnYXIu Y29tPgpEYXRlOiBNb24sIDE4IE9jdCAyMDIxIDE1OjQxOjQwIC0wMzAwClN1YmplY3Q6IFtQQVRD SF0gOyAqIGRvYy9lbWFjcy93aW5kb3dzLnRleGk6IERvYyBmaXguCgotLS0KIGRvYy9lbWFjcy93 aW5kb3dzLnRleGkgfCAyICstCiAxIGZpbGUgY2hhbmdlZCwgMSBpbnNlcnRpb24oKyksIDEgZGVs ZXRpb24oLSkKCmRpZmYgLS1naXQgYS9kb2MvZW1hY3Mvd2luZG93cy50ZXhpIGIvZG9jL2VtYWNz L3dpbmRvd3MudGV4aQppbmRleCBmYWNiYzdmM2VkLi44Y2I4OGEyMDk1IDEwMDY0NAotLS0gYS9k b2MvZW1hY3Mvd2luZG93cy50ZXhpCisrKyBiL2RvYy9lbWFjcy93aW5kb3dzLnRleGkKQEAgLTQ0 NCw3ICs0NDQsNyBAQCBXaW5kb3cgQ2hvaWNlCiBAZ3JvdXAKIChjdXN0b21pemUtc2V0LXZhcmlh YmxlCiAgJ2Rpc3BsYXktYnVmZmVyLWFsaXN0Ci0gJygiXFwqc2NyYXRjaFxcKiIgKGRpc3BsYXkt YnVmZmVyLXNhbWUtd2luZG93KSkpCisgJygoIlxcKnNjcmF0Y2hcXCoiIChkaXNwbGF5LWJ1ZmZl ci1zYW1lLXdpbmRvdykpKSkKIEBlbmQgZ3JvdXAKIEBlbmQgZXhhbXBsZQogCi0tIAoyLjMzLjAK Cg== --=_238d03a6c9b64131dd3276e9c2a24a94-- From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 18 23:15:00 2021 Received: (at 51274) by debbugs.gnu.org; 19 Oct 2021 03:15:00 +0000 Received: from localhost ([127.0.0.1]:49006 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mcfae-00070U-9k for submit@debbugs.gnu.org; Mon, 18 Oct 2021 23:15:00 -0400 Received: from quimby.gnus.org ([95.216.78.240]:58726) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mcfaZ-00070C-3d for 51274@debbugs.gnu.org; Mon, 18 Oct 2021 23:14:59 -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=jTyvaJvghEmpOIXrdnZfrrD8MPHcaFPNlfqD/Ya9frI=; b=M77wr8cG9Qf5wzzf9GvWKtfzUm il3uvQR/HB3E8uDtnOkeinMNxd4doWixbr07WOJR9vJpw+ikJUoFWliGAMwSf6l5TmBjIvrd5sCI7 TSQCmp7a5KLJTrpQWEoE5xwg7BgQR6pyjhBoJqB4CafieZ7FPEEB87r05oV1LXwdQJXc=; Received: from [84.212.220.105] (helo=elva) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mcfaQ-0002J8-1n; Tue, 19 Oct 2021 05:14:48 +0200 From: Lars Ingebrigtsen To: pmauro@posteo.net Subject: Re: bug#51274: 29.0.50; fix parens of display-buffer-alist in emacs docs References: <5b0166498f6645f83aa04ad18f13d67d@posteo.net> X-Now-Playing: Jenny Berger Myhre's _Lint_: "Interne puslespill" Date: Tue, 19 Oct 2021 05:14:45 +0200 In-Reply-To: <5b0166498f6645f83aa04ad18f13d67d@posteo.net> (pmauro@posteo.net's message of "Mon, 18 Oct 2021 18:43:14 +0000") Message-ID: <877de9hfiy.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.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: pmauro@posteo.net writes: > The section "20.6.1 How display-buffer works" of the Emacs manual has an > example wich creates a malformed alist, whose first element is a string > instead of a list. This value is used to customiz [...] 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: -2.3 (--) X-Debbugs-Envelope-To: 51274 Cc: 51274@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 (---) pmauro@posteo.net writes: > The section "20.6.1 How display-buffer works" of the Emacs manual has an > example wich creates a malformed alist, whose first element is a string > instead of a list. This value is used to customize display-buffer-alist. > > In other sections of the manual, like "20.6.2 Displaying non-editable > buffers.", the alist is correctly formed. > > The attachment is a patch with the fix. Thanks; applied to Emacs 28 (which will later be merged with master). -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 18 23:15:02 2021 Received: (at control) by debbugs.gnu.org; 19 Oct 2021 03:15:03 +0000 Received: from localhost ([127.0.0.1]:49009 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mcfag-00070z-GO for submit@debbugs.gnu.org; Mon, 18 Oct 2021 23:15:02 -0400 Received: from quimby.gnus.org ([95.216.78.240]:58740) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mcfae-00070I-GQ for control@debbugs.gnu.org; Mon, 18 Oct 2021 23:15:00 -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=LaXEhqJ81OW6m+Dg34BTNwsidWyDr2oq0kWNspTpaIk=; b=SniJUNHAAbJDEZzkmgJ1EvW61e wPfz8mSfr0rjGfpd7vdd5Zu6Jtq8Neo4C8FarbEQH92bZ6+NgcZzGmY8g1eQsHgrvVMlNpeUv8U6L xMVru5II07HAdVuOugPia7svA968N/jgMxfxCfi6UuCyGLxqrPYYqGQ+9cKOlqnOGQD0=; Received: from [84.212.220.105] (helo=elva) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mcfaX-0002JH-4s for control@debbugs.gnu.org; Tue, 19 Oct 2021 05:14:55 +0200 Date: Tue, 19 Oct 2021 05:14:52 +0200 Message-Id: <875ytthfir.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #51274 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 51274 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: -2.3 (--) 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: -3.3 (---) close 51274 28.1 quit From unknown Thu Jun 19 16:19:10 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 16 Nov 2021 12:24:11 +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