From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 05 05:41:11 2021 Received: (at submit) by debbugs.gnu.org; 5 Nov 2021 09:41:11 +0000 Received: from localhost ([127.0.0.1]:44850 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mivih-0004Hw-6j for submit@debbugs.gnu.org; Fri, 05 Nov 2021 05:41:11 -0400 Received: from lists.gnu.org ([209.51.188.17]:55178) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mivif-0004Ho-Kp for submit@debbugs.gnu.org; Fri, 05 Nov 2021 05:41:10 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:40470) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mivif-0002tT-Ed for bug-gnu-emacs@gnu.org; Fri, 05 Nov 2021 05:41:09 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:52876) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mivif-0002hV-2q for bug-gnu-emacs@gnu.org; Fri, 05 Nov 2021 05:41:09 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:Subject:To:From:in-reply-to: references; bh=GeLv8KDACo8EYOTR2HcOut8Jg8sQH5NRDh6KJsnfWWg=; b=ihPqM8h7Ck4h/l qILgi7NMYCGlf5+cThmPXFcuOt15KQk2vABrMzElnSoBamOdMulR3l1mts+Y0REq41iO6E7k2LG/Y QGRCEWpw0iKhc+TXQsmsOXS5218MGQHfh0X2TjopDtOuK63SQqejnrxxoYRPzWH9DmWbyM5SQ1bLE SQwL5AYPy+mspOYOF9of2vyk78PuqlBuTc1HmJSa2LZLHEbXmZ3aVNEkSLWyvQypjCf9GWfF4+Z2U /idvdKcXiPPAGK0bYyuyGfxCmEwW65Nbn2s1pojNk5T/1Q4yNJMISf3JxVtXJRvOm/2cWyyAZi7Gx L6EWQIYhn9P/UHxC5cog==; Received: from p5b3265dc.dip0.t-ipconnect.de ([91.50.101.220]:55663 helo=MUTANT) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mivie-0000Ga-Nj for bug-gnu-emacs@gnu.org; Fri, 05 Nov 2021 05:41:08 -0400 From: Arash Esbati To: emacs-bugs Subject: 29.0.50; [PATCH] Show offscreen context with properties Date: Fri, 05 Nov 2021 10:40:47 +0100 Message-ID: <86y263hrds.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.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: -3.3 (---) Hi all, paren.el now can show the context in minibuffer when `show-paren-context-when-offscreen' is non-nil (introduced in this change 9f505c476e). Is it possible to extend this that text properties are not stripped? I'm thinking about something like this: --8<---------------cut here---------------start------------->8--- diff --git a/lisp/paren.el b/lisp/paren.el index 7e7cf6c262..d0330f2f6a 100644 --- a/lisp/paren.el +++ b/lisp/paren.el @@ -96,6 +96,14 @@ show-paren-context-when-offscreen :type 'boolean :version "29.1") +(defcustom show-paren-context-when-offscreen-with-properties nil + "If non-nil, show the offscreen context in the echo area with properties. +It is complementary to `show-paren-context-when-offscreen' and is +taken into account when `show-paren-context-when-offscreen' is +non-nil." + :type 'boolean + :version "29.1") + (defvar show-paren--idle-timer nil) (defvar show-paren--overlay (let ((ol (make-overlay (point) (point) nil t))) (delete-overlay ol) ol) @@ -332,7 +340,9 @@ show-paren-function (message-log-max nil)) (minibuffer-message "Matches %s" - (substring-no-properties open-paren-line-string))))) + (if show-paren-context-when-offscreen-with-properties + open-paren-line-string + (substring-no-properties open-paren-line-string)))))) ;; Always set the overlay face, since it varies. (overlay-put show-paren--overlay 'priority show-paren-priority) (overlay-put show-paren--overlay 'face face)))))) --8<---------------cut here---------------end--------------->8--- Any comments welcome. I will prepare a proper format-patch (incl. update of programs.texi) once this is accepted. Best, Arash From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 05 08:03:15 2021 Received: (at 51606) by debbugs.gnu.org; 5 Nov 2021 12:03:15 +0000 Received: from localhost ([127.0.0.1]:45020 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mixwA-0003uu-Vw for submit@debbugs.gnu.org; Fri, 05 Nov 2021 08:03:15 -0400 Received: from eggs.gnu.org ([209.51.188.92]:53506) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mixw9-0003ue-Sl for 51606@debbugs.gnu.org; Fri, 05 Nov 2021 08:03:14 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:43890) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mixw4-0008Cv-KC; Fri, 05 Nov 2021 08:03:08 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-version:References:Subject:In-Reply-To:To:From: Date; bh=OzgNrLcdg7QYsUwsI6PwhwNO++6r2u5xF/LyyAKa84Q=; b=nqNrHrgHCLYoacQbRbGl n90mSeNg7btJ50Y4Mg2f0iUUtDzZnDZIO/Qm//Uqa1gZt0YOtuTRSDoBVeBVN4ynfG8IUoUQO0QfK 0PW+4gD7z/s1uAePiO2j4UlEdYihFWtVL7q/nMRGg4tj3Iu0nhdTP8kTeR7ANw3wVKfl//qrn2vMU MydeYTJlYOOYhW3tWv9Q5v547V0YfLoULQ5u/JL1fUejwUBumPQSkCYDFvTuVNXPUi94Otvvb8BfA qctqQQYHYzV6aBRuuXLckVZSHV3OvojQEjLEasZ0DXxzdN6klYul4+W1e7x6QSqU3w6x5fMMYm6qd pv8WCGnMLF6/Hw==; Received: from [87.69.77.57] (port=4517 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mixw4-0006Hu-2r; Fri, 05 Nov 2021 08:03:08 -0400 Date: Fri, 05 Nov 2021 14:02:50 +0200 Message-Id: <835yt6ero5.fsf@gnu.org> From: Eli Zaretskii To: Arash Esbati , Daniel =?utf-8?Q?Mart=C3=ADn?= In-Reply-To: <86y263hrds.fsf@gnu.org> (message from Arash Esbati on Fri, 05 Nov 2021 10:40:47 +0100) Subject: Re: bug#51606: 29.0.50; [PATCH] Show offscreen context with properties References: <86y263hrds.fsf@gnu.org> MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 51606 Cc: 51606@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 (---) > From: Arash Esbati > Date: Fri, 05 Nov 2021 10:40:47 +0100 > > paren.el now can show the context in minibuffer when > `show-paren-context-when-offscreen' is non-nil (introduced in this > change 9f505c476e). Is it possible to extend this that text properties > are not stripped? I'm thinking about something like this: Why do we remove the properties in the first place? Daniel, any special reasons? From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 05 08:57:23 2021 Received: (at 51606) by debbugs.gnu.org; 5 Nov 2021 12:57:23 +0000 Received: from localhost ([127.0.0.1]:45087 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1miymY-0005Fm-Fz for submit@debbugs.gnu.org; Fri, 05 Nov 2021 08:57:22 -0400 Received: from sonic305-20.consmr.mail.ir2.yahoo.com ([77.238.177.82]:40805) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1miymW-0005FV-7x for 51606@debbugs.gnu.org; Fri, 05 Nov 2021 08:57:20 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.es; s=s2048; t=1636117034; bh=xhg81jsS/ypDc92mXt3yQ+opJsFIgmb+1TAA7cOLWOA=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From:Subject:Reply-To; b=VBTnZB92dOBcWoFWcbnNsMNON4L80u8vuTuKWrmYN302+F/1W2O4m0ZZFmk671NOcDgIimtKxEqYvWiZX0dIMD09I48Syq28SkR7jUCdlDTIX6SL5PCKurztlt9P2aA7yK47vN6mVtaigj2r9v3bylKspBb7COQ+TrKY7KqXuCKpR+FQt16grwIBzi7BLrbv2XtJh4oGHzCaWrWWei5H7qCvRiy3MCAQwMM8IvT9Wmf3QtkdaaT6kzZ/53eNkr+RpNovy6sEHgNZu0945pyccNQtWPClthqi4JKNXWVvlnr7Tps30C8R+lFLbNDakaRR30DIQ4wrfLYf/+llmaRk6w== X-SONIC-DKIM-SIGN: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1636117034; bh=SHT0o2MsM9uy6FyuKs7eceKBTqp5EkOCO7GZ3kTQ85R=; h=X-Sonic-MF:From:To:Subject:Date:From:Subject; b=Pw1c5dlxSnGyvsguIwbgHXR0PK05yxA8LH1Rb1wlqMN+0dfDeH4V7J3Bd+GEMPiEmkonK77dywil1QeD5xlFkU4O/N9PjuLjheRHDCPJhFgrrWQkFOPfq6DhcENwaBY8+AyqJOQJoafp2gN8MiOCsFdMhxLqve5QlHwwR9JPhxDLNHTuB4Z4llvs0SjeKXMtrKS4yepY+5P4II+27nnvhGd8uLZ1fA54YDyYiRGKUSCYCE5Dneqn45QicnYDfr74qeBi0sBUsU1cr2SHAWTohrLGsMk2cJHJWWKNo8uAUtXi92zqtrmWoErr+AZ07UPYBuzJG0qtTXSyJ+VMKX4NIg== X-YMail-OSG: Q6fZeIsVM1kM.AaBdmhgxQf01Bqknt76mN7uUrqYaAfiH0rULik0PrUlcfXTrpH nThisLX3RpaGXMgWslzuSFtDcHbsSKfRBU086xZAV87.p4V0zm4gt32tn1sPPISCwFa2VcYM9UuC UyZ6Y7oLjuUSibaPpW4EH5T15m3zSjWn0bRf_fGpeDjvBR9iOOeFdzRkA8WM2kiBGqR.eUYxfUQk iF7dOkox7kcxZPkJL1uy3HKZEBVtJTk_lt7P12HA2nlxfTQpFpb33x2ix3PZ5aEKe5aBlvlZ8c_f ohAuyxytnNedw3EStNi7Mt4HzS_QNkjfKDS_RZcXbcib_Z61d9ctiJjSaJTDFxNOD.7Hvcyz1zE3 ttgKbEK8v7LJox_ppUHqwPFPE7i0jysuWV8l4yictxF70cutYRX9jWrH5Ow1KUBGHUzLLnDCEXSi JB.rJqN9FGWHPYqYh9RhDlUxOK_tbR3BeF5Tv.q16qsRgf4rkev9zpBq8wk4CcLAWPNIoznwvOyP lmj393YFTu5WCDJCrag2woliRdHhP7Zib6GmtAo1vC_QNbmucxzGI6RI3fCmGUhYWL6Oo3faroyd PK_wcZjp_r3Hce6vPDmAQplPEFjWuGn9c1vuGSr.CsqZQiGJFU1XPvOXG6Q5tyRnoo6MK5E4.cq. 9gK4zH5HildUJrujokaqYxZlmH7uULQ6gLl69WlMjMW9UEbaz0jgZjbphXNfh77.4KL7G1kimS81 bMA178yLPOlxzI9FEa493inJ71AwqpSB89AdwYzLDkSqrU7ixwOXBUKw7lLapTJ4_cAjuvFLN7E0 MabCaKvACOw_6B6ch4SNJUm9xdqiX3dBk0dx.fqxguB8_amLpkvBVOIXQuQ1aeXCfQ93PuKfGnCP JRHLF03pm2lf62to7xINRkG47Q8_3iexJNRoYfy0JgeJjSrST3G9FCbeFASq5czz566LoSQ5xswB cm6cZArQ2SnVkUY2rJ.gCL6VwjfYDH4ma_XzU4D3Yz5b8I5R0u_W7Uh0RpbSOxLZmiVl4FMdGMZ6 csrB7VA5gTqLVAtxxEc4A1mVFx7mhxumuVyXIURd9KgMVmbStmsqHxCy2czWmv0zIKdDOLi_8e1R nbAz8PCli4Cc590Z4BkkLfM8N03C7xOmbK6sR5C84PCAXFYS5sLLIU.mWnCxG04DUfpccyT01_1j GXds5uCdx2O.6PmmRJBZ1Iyo2d7Xxdjpym3Qlj3xx.Z._TNNFpICwwENikjhLxh1h0tKpFx2CGCT 6Z_jpmauhxpeQ6wGoc7aOYqBMV4k6VGfbTwwU47eiYDP.F59XDI0Eeef_2p3iyRQWt0atmOef.1i YrUJ9rVDoNpPMluaPrVlcWSxPZoK2zobVHYPspZ5Db2g9moKhcMj_O8Vhjy__JUuRTBYoCCArLyr 2yGw1MljlfcaZ4qIyE1trw_Rc6CyH5MybgKsZAHKdvz_unpruNq4H4Jm188IdxFD1c_mapOkc9K_ 4D1C.zyMKj.UcWfJgk4WqXWpCKD9B1aPOkhgdRNWyjvcfc9EjxCXqNYjoF8i022L6GzztS2.R80L XqL4FegcSR_N6YwRZ7w6fidlhuEuKQXstQEF0EoQvIWtbyUQvsuX2yStQoFSD2DR67y3JzvibD.o G9clXWcHEsdczabPFioHW3MIiKQO19Bqlxl0wvKkrRhAPXT4.1kFzzoq8fk8pGLl7RbMgbzpJDpE AbKw0N8UFVzWTCSBOodmU3gO9_dyWM14Ob7DtXxsxBl6KjxCRe0ruV3Y2N7xzixZx6McoXFbbENF 5rdv_XsNUcKjKTYlj4VX3KxG4nWoV9kY4nUUqQKEIYgaCUS17RzTjKqlQpbmy3yqi13WfD6T2xlS _SvfCB3hHDaqanycQt1kz8aSj8eriXm8cXo8.LAiptI8n0lkubfwQd7KsS6Iu2dEBrX3lVXb2cZh FxqFBMG189zlJ171U3KFDZIUtgT5aVCTqGsDplf7YNx3L7Lj_sOIhnACduXHfBYh7tZ6u8N1meML QPjIpedMGZ0n.Zj6eLqC7YRYQcAXMuuPhDLYioZ3vZTc5qfuVoUDaDk6blT7KGFnGhK0UVuavX5I PqdCTc5Y7JL70f7PgkjQL5LLIC3uf4QY0L4xe4vMeGfjZNDNLXHQdb1KvYM2EfRZ3XstIOy8xC0I mZEZhEZue9qistyNCgbB6G8vNmJSFX8WbbJRZHINJG1spw.Z5VcFjsvnbhsKbidtgBqVNxnv1Vo7 5Rn2BdwOuqhmZJXG5aRl32SZGuuCdhy.QBW7pQDr403mhtdqjwFu0vzromoyrlL_db2mcbWEFvoy T.YfLc3AFxiaCtvrNsoyNyKxMpiaOBKG5EQQZ6TuHw4dZgvFI5w-- X-Sonic-MF: Received: from sonic.gate.mail.ne1.yahoo.com by sonic305.consmr.mail.ir2.yahoo.com with HTTP; Fri, 5 Nov 2021 12:57:14 +0000 Received: by kubenode516.mail-prod1.omega.ir2.yahoo.com (VZM Hermes SMTP Server) with ESMTPA ID 1cfaa734044e291c56cca8040b1be81e; Fri, 05 Nov 2021 12:57:10 +0000 (UTC) From: =?utf-8?Q?Daniel_Mart=C3=ADn?= To: Eli Zaretskii Subject: Re: bug#51606: 29.0.50; [PATCH] Show offscreen context with properties References: <86y263hrds.fsf@gnu.org> <835yt6ero5.fsf@gnu.org> Date: Fri, 05 Nov 2021 13:57:08 +0100 In-Reply-To: <835yt6ero5.fsf@gnu.org> (Eli Zaretskii's message of "Fri, 05 Nov 2021 14:02:50 +0200") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (darwin) MIME-Version: 1.0 Content-Type: text/plain X-Mailer: WebService/1.1.19266 mail.backend.jedi.jws.acl:role.jedi.acl.token.atz.jws.hermes.yahoo Content-Length: 1055 X-Spam-Score: 0.2 (/) X-Debbugs-Envelope-To: 51606 Cc: Arash Esbati , 51606@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: -0.8 (/) Eli Zaretskii writes: >> From: Arash Esbati >> Date: Fri, 05 Nov 2021 10:40:47 +0100 >> >> paren.el now can show the context in minibuffer when >> `show-paren-context-when-offscreen' is non-nil (introduced in this >> change 9f505c476e). Is it possible to extend this that text properties >> are not stripped? I'm thinking about something like this: > > Why do we remove the properties in the first place? Daniel, any > special reasons? No reason other than being cautious and "follow the traditional behavior of blink-matching-open". The code that I extracted from blink-matching-open to reuse it for show-paren-mode removed the text properties (see https://git.savannah.gnu.org/cgit/emacs.git/tree/lisp/simple.el?h=emacs-28#n8608). If I'm not mistaken, this was apparently introduced in 2005 by Richard Stallman (https://git.savannah.gnu.org/cgit/emacs.git/commit/?h=emacs-28&id=1d0e3fc84f058248515f242c0484a0dabfac95aa), but I don't know the reasons for the change. Perhaps it didn't look good on some TTY frames? From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 05 10:01:41 2021 Received: (at 51606) by debbugs.gnu.org; 5 Nov 2021 14:01:41 +0000 Received: from localhost ([127.0.0.1]:46706 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mizmn-0007JY-4t for submit@debbugs.gnu.org; Fri, 05 Nov 2021 10:01:41 -0400 Received: from eggs.gnu.org ([209.51.188.92]:37286) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mizmk-0007JN-Rv for 51606@debbugs.gnu.org; Fri, 05 Nov 2021 10:01:39 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:52364) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mizmf-0005PS-Ha; Fri, 05 Nov 2021 10:01:33 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-version:References:Subject:In-Reply-To:To:From: Date; bh=/o5xALQtwZXi65gR13cLk3XfVydvjU31QLpj24ql/N8=; b=ZU1UOuizOmISinMmDxhb nK0QfJGpH0Ifokp9Xj2Ej1RPkOkTcINwlinwtu51Y/MORhn42TgTXmsCOFs9qM+ADtmx99xRzRjP0 2VVCbluKWz4j1PGqyqiN8MNr0wb7SFKxIUMde2pghe8Cbz4n+0MNJMnT8bancIOayxYA3FEkitsfr AhaZUrPmPrK34A35jSyOAcYSdjkU5DltoKm5NgZ5ctF6kgQtutpGj8sS9k/e0IDXJlM+XFGHOMOCF EDPGrvPVIyoSaVRoP+5RQKqJGhGOIcxjiddk0GTzT9DVKGHjGIduG9HCUg3XrmLMmMkuZujgHzTSH x7x7L5EibxARlA==; Received: from [87.69.77.57] (port=3796 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mizmX-0003zU-RL; Fri, 05 Nov 2021 10:01:26 -0400 Date: Fri, 05 Nov 2021 16:01:07 +0200 Message-Id: <8335oaem70.fsf@gnu.org> From: Eli Zaretskii To: Daniel =?utf-8?Q?Mart=C3=ADn?= , Richard Stallman In-Reply-To: (message from Daniel =?utf-8?Q?Mart?= =?utf-8?Q?=C3=ADn?= on Fri, 05 Nov 2021 13:57:08 +0100) Subject: Re: bug#51606: 29.0.50; [PATCH] Show offscreen context with properties References: <86y263hrds.fsf@gnu.org> <835yt6ero5.fsf@gnu.org> MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 51606 Cc: arash@gnu.org, 51606@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 (---) > From: Daniel Martín > Cc: Arash Esbati , 51606@debbugs.gnu.org > Date: Fri, 05 Nov 2021 13:57:08 +0100 > > >> paren.el now can show the context in minibuffer when > >> `show-paren-context-when-offscreen' is non-nil (introduced in this > >> change 9f505c476e). Is it possible to extend this that text properties > >> are not stripped? I'm thinking about something like this: > > > > Why do we remove the properties in the first place? Daniel, any > > special reasons? > > No reason other than being cautious and "follow the traditional behavior > of blink-matching-open". The code that I extracted from > blink-matching-open to reuse it for show-paren-mode removed the text > properties (see > https://git.savannah.gnu.org/cgit/emacs.git/tree/lisp/simple.el?h=emacs-28#n8608). > If I'm not mistaken, this was apparently introduced in 2005 by Richard > Stallman > (https://git.savannah.gnu.org/cgit/emacs.git/commit/?h=emacs-28&id=1d0e3fc84f058248515f242c0484a0dabfac95aa), > but I don't know the reasons for the change. Perhaps it didn't look > good on some TTY frames? I'd be surprised. Richard, do you remember why you removed text properties from the blink-matching-open text it shows in the echo-area? From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 05 19:21:20 2021 Received: (at control) by debbugs.gnu.org; 5 Nov 2021 23:21:20 +0000 Received: from localhost ([127.0.0.1]:47591 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mj8WO-00078G-5t for submit@debbugs.gnu.org; Fri, 05 Nov 2021 19:21:20 -0400 Received: from quimby.gnus.org ([95.216.78.240]:44568) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mj8WM-000780-Cb for control@debbugs.gnu.org; Fri, 05 Nov 2021 19:21:18 -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=JKLqx/7XA78pRt1KHmlmg27QqkgcbCEhehnPjGkbTrc=; b=GsU6zeeXBHRHG80d0lrrc6M9iO gm22D62opatAJbvxrZzha7GscnfWSJPedTpO7ihOdJnB5fC2L/cfFgwzHaJs69kk0ctf0FdrExrTq gRKR/S4abobo8A+l9J3vU5m+ECb/pm46X6+PWxn4IzqstNFud30NHUgH4c+W9kgTlPto=; 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 1mj8WE-0000g1-Rv for control@debbugs.gnu.org; Sat, 06 Nov 2021 00:21:12 +0100 Date: Sat, 06 Nov 2021 00:21:10 +0100 Message-Id: <87v916fau1.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #51606 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 51606 + moreinfo 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 (---) tags 51606 + moreinfo quit From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 26 14:01:43 2021 Received: (at 51606) by debbugs.gnu.org; 26 Nov 2021 19:01:43 +0000 Received: from localhost ([127.0.0.1]:60557 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mqgTf-0000Pw-0z for submit@debbugs.gnu.org; Fri, 26 Nov 2021 14:01:43 -0500 Received: from sonic301-22.consmr.mail.ir2.yahoo.com ([77.238.176.99]:45302) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mqgTc-0000Pf-Ai for 51606@debbugs.gnu.org; Fri, 26 Nov 2021 14:01:40 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.es; s=s2048; t=1637953294; bh=F3GSBPRJuI+JCwuhL2j4Uf0/ZHcJTGf5WSxIC1rhwv8=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From:Subject:Reply-To; b=q0Nr8MwhJl+JE1XEcqFQy22Q8ggXSQigsPh4qKFUBby+Uup1+HHaBq6pFtBr3AOnUYetFWdRVYbuhzNZhoQY7idF9736OvcH7Ei6sILo2N2SdG38R5epLnfqZURzT6434BEuWvnjmcybWicQU6+3j9F5HJ2hjSoHaQmijuPDBw9DM1gufr0WegvSyir4M2HvgNPwCOkPDDPglKMhkZmWOf8sODoXM/KTq55POUXAEJUR0Ac6H9D4aJG/v3R4b4kOz+spAIMri+UAONP/0wskjhu4TKp2aBw8uP/tO5SkWc0Az1A9/QVNWCX9l+iakzXe88Ob0VWDaOijzbQIdPNLoQ== X-SONIC-DKIM-SIGN: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1637953294; bh=JiZ3l6JLV5QUaEjlofz/rBA8rR4MZuP76w0cC6WCxmG=; h=X-Sonic-MF:From:To:Subject:Date:From:Subject; b=aC1HkrYa2A6/qd7MeUIaN1trtpo6dazhxDox2v7/JNxPQQkx3wJ5Qb6AvtUEVaRTG5PgBFlUp2hjQ1PSxLn+oVtzVEph1TCUGZcD4JmHoCTDXMj5+hl3ObLNhOdt0I+svzlvKI8Cj2YO94EEsjjn4wXKw9CSOMlbgX9h6vt60fvbpQxKYfOsx7tlgPIy9mIH/ueVq0C41OfuaOQdr9CElNGtZXoJX5zBqjTZzaW3TBjntf1dZHFpP4A86CRI6XGZV454h+NjhdPyQFq7TnJ3fFi491f3gvCrGrbNfQ9Kx8b0AqtbvXIvmjr8HWo8FiczXmbdGzFtX0T3tCHvcyetSA== X-YMail-OSG: iiSo2CQVM1mZK6dWJav3zgQIpvkLOE4D_GFHA1GZvJr9lz6z2.CxUbara4TJovq JZuGnnGr4WC0qoDGtKSUQWn87DzTVfmFNm2oS3T0RRwQWaRArddj7Tfqev6tjcNKJeQ9VNxsrhs4 wkPNO1hNnLMFLutyQ2Q9xSWbfgb_YeB8jIjyipooB.GurpDuNUH2asdwEE5Ny6yYPkWgnH4Xesaz GE2H97aC6ZwHvky6RGdYlPsJnBSFs7X16vnZlgZAwfocIje.bqG3cnFH_G.p.0JsRs1pK6TnyWwD R1OjtyDOmHue0vsZxbcSW11pnBKiytG0kmoRaOw_SnbRINkYCOqJPUgqTiaTijSmolHFXEmwmNzS 13NAk6igXHU8eWKBx5N_JNz88CI0zb.QGmmjIC0WLYCZQGAWOc5_Tbp.haWppJ0pDFCdfR9it7Bu VfKpQWkZRWyuuDmDbpJvf6dNrIwB2470qqfPG9UIZNBzFYNF7Ekr50RU7Rm2hIG6Tm3fT1ySo3eC GlKDgiXzdKq0E.wcqAlJQKFhSu5NJIs5aH1QyffODNCYAQNtYlRj8wKYSnL4sWGUpOi1MiYXOdVf bB99b6UV5WzOmCZvIW7gn8Nlk32twuMIhiEJctVH8pC9EZypM5tOInrP8MF68vNREOJSSC4Gz712 VltEbRK3MlHfHeQWU4m6h6m_e21mgtEFuR0npw2tvpBQep9pwB_u6szRFewsJpNvKEdXFCK83zEP yr9voHXBRZ3LKGzdZt1gC9c2i1mUGG07jhQUSdlzbLqIvCHYZjEYtfZ9y.1dUXPviqyo_MX61UKV 9YlBgtnRXpuZWPkZhbbawO7N.VH2QKYbuqneQ4rpmxnOpHtjpCFZkLwTmWmdIo1dcbfW1apAHQkw GzYs9NLf1a1SEbhA4Bt5hGxuYEXDiTG6xNWeuGXZPpxo6b7OiRoeZWcyOkD8cKpDhtFhgnqAvh_L GSOcSOnl_fB1hoMUkWp2DKVL7uHlBINDT_QiLqxV9_1lvh9gyvF0qKa6ff6dZUB8ck9P7ILyDIiw 4sgZ3_OdAoi4_EptH_RBBVpZHRAdTkhF.gIGQO5fO8hNs3krPq1ZOsWyK_Lf5hau5Oiv1Ggi2sZ9 YAmcCUB8bedW0f_s5f5BDBwjekT41oFKwRWuvLFzkMj_5hfjrcYyDoBaMHUGex9kY1s.tnO76d2o 0dFANgqk1P7kqQs8HEjipbGSS_.r98VlBqhcMpOLI29OFc68a4G9OR1pFdBxjKIpm98kcvdK8EQp dkbQrguW4zXrYk6G7Wl4sYG.d3Ec0a.cpnV7BvfEsX4cfmru53pSmMNzAOASmxVxcjgkog2uqY0T LU.joPXFUucFogX_..gk6TVfkhOMoGdILMmzcazyPP12U_7DVPXXMXWmz6019uMwVobqWCeoyzb7 R9_3E2CevRSlN9EEpZRlmtUpB1yyMF6wZcmzwerOZqDbihCjwRdnlo7N5QcsiO3FM9QM8tcMcbrl VQPv8psD3FEkhbtPnNH7aVZ9sRfkGKPRs23v_c5_3d.Pabl5WwGsqNBF4wZWRP5CSCBSJr4ny3_a ESI.65kcAbxfGeggkGiXgitUAqG2RpT3Yx0NsnkZ0kxSo_Vi0u2iix6BLe.FoYBQouRXZ1WTSP2q yfFuB7od_MZdjjc8a2Ay3eRzyFZ8MIsO_6Tj23j.exHv1RYeesSW4vgCKiXBmyP1f9NZPy.m95Xj UvYd5fUMoCd0Uyja3Si4J0GibGDCsfpdX3Dsejymi1xcOCMyGiTz.j4E9bE5QgTLVddDBqGa88gj fWJvrltLdYyye1JLF.DELGSSwotcJ8sUDvI.GD4EWuR.BMfv9AST5YA4Jdwi3YUAHuFIOBXKO25X MESR2M6.vTEWnYZa1I9esbD3JdqkDxkX8WGTbAeHo3LnmP_l9wvZWXdL6qFxYVkKVHJfGPDwzMdN fNFo4ysn4cwLi05TnyRQv1VhP3JbR_qGv.XGdYQ.pVv1L.oeN2gYlV_1KIcsDGQq8qXyFGvcf57X UMZcUSOnHj1rHOcVMcMoJ_VZuapjAGrxvx5Z1xBIiT_r0X.CPyXoAhkJNPBhS.4e_KWBUIsW1Gqm vkQpHFoFLFtKUFRYeNDRbysVTDU2yUY9VMgBZwtvYxTyyWBCcVeG2WLE_8NGg_32LMNrZDUryoOZ .vrwtpcoGFs0DtKzJScstyl.lU_aj0Yan2Ei7peYscV3V_4ewfAkVNX4pPjyCdCyQG9ATOS0D0or i2HTTzV3DIkn9TawpHCdP0_vZU1dfjQRDTZ5AMIRyx9nIPmUf0xN8LA857A0- X-Sonic-MF: Received: from sonic.gate.mail.ne1.yahoo.com by sonic301.consmr.mail.ir2.yahoo.com with HTTP; Fri, 26 Nov 2021 19:01:34 +0000 Received: by kubenode514.mail-prod1.omega.ir2.yahoo.com (VZM Hermes SMTP Server) with ESMTPA ID 1a21d61de17269017a4c62294d46242b; Fri, 26 Nov 2021 19:01:30 +0000 (UTC) From: =?utf-8?Q?Daniel_Mart=C3=ADn?= To: Eli Zaretskii Subject: Re: bug#51606: 29.0.50; [PATCH] Show offscreen context with properties References: <86y263hrds.fsf@gnu.org> <835yt6ero5.fsf@gnu.org> <8335oaem70.fsf@gnu.org> Date: Fri, 26 Nov 2021 20:01:28 +0100 In-Reply-To: <8335oaem70.fsf@gnu.org> (Eli Zaretskii's message of "Fri, 05 Nov 2021 16:01:07 +0200") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (darwin) MIME-Version: 1.0 Content-Type: text/plain X-Mailer: WebService/1.1.19306 mail.backend.jedi.jws.acl:role.jedi.acl.token.atz.jws.hermes.yahoo Content-Length: 1066 X-Spam-Score: 0.2 (/) X-Debbugs-Envelope-To: 51606 Cc: arash@gnu.org, Richard Stallman , 51606@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: -0.8 (/) Eli Zaretskii writes: >> > >> > Why do we remove the properties in the first place? Daniel, any >> > special reasons? >> >> No reason other than being cautious and "follow the traditional behavior >> of blink-matching-open". The code that I extracted from >> blink-matching-open to reuse it for show-paren-mode removed the text >> properties (see >> https://git.savannah.gnu.org/cgit/emacs.git/tree/lisp/simple.el?h=emacs-28#n8608). >> If I'm not mistaken, this was apparently introduced in 2005 by Richard >> Stallman >> (https://git.savannah.gnu.org/cgit/emacs.git/commit/?h=emacs-28&id=1d0e3fc84f058248515f242c0484a0dabfac95aa), >> but I don't know the reasons for the change. Perhaps it didn't look >> good on some TTY frames? > > I'd be surprised. > > Richard, do you remember why you removed text properties from the > blink-matching-open text it shows in the echo-area? BTW, the patch looks good to me. But if keeping the text properties is not a problem, I'd do that unconditionally, without adding another customization option. WDYT? From debbugs-submit-bounces@debbugs.gnu.org Mon Nov 29 06:04:08 2021 Received: (at 51606) by debbugs.gnu.org; 29 Nov 2021 11:04:08 +0000 Received: from localhost ([127.0.0.1]:37256 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mreS8-0004ue-3g for submit@debbugs.gnu.org; Mon, 29 Nov 2021 06:04:08 -0500 Received: from eggs.gnu.org ([209.51.188.92]:55954) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mreS6-0004u7-5n for 51606@debbugs.gnu.org; Mon, 29 Nov 2021 06:04:06 -0500 Received: from [2001:470:142:3::e] (port=37560 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mreS0-0000A5-Qx; Mon, 29 Nov 2021 06:04:00 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=XOj9e2UV08/8fzNMftpT890dz7vGAJmwOR7fN3f43Zk=; b=pKuHUvI2ENdhImxSdr7J /Gdf5HfqRSAbmcusx206c2AwxXLE20XsWV3M4CU5AUhdNNJZoK3VgikQyr1bGXvTHZ31xzWOGKo4j pQOTfF10pRqah84aPHk3iFmkU4PiMh++cBvo9P7r3GWeAaUbNcZZbSgH7zSqXY3kMO4uqIC6RYDTJ Ser/lqsTVkrYuc/1j2qzGELT4QZ2cI1qh1Jg37o85ontjgWNVWOfUgg9z25fOQowec3kLgyvt3tTR E9yUj6GHeALAQLqu5/HzqQ4GxlT77RHtys/217ktvtQvpws460GYv4lt5BnX99NqB/pHWK7X3b9d/ P/8o5rMM5XGJHQ==; Received: from p5b326e61.dip0.t-ipconnect.de ([91.50.110.97]:50202 helo=MUTANT) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mreRp-0002LJ-0K; Mon, 29 Nov 2021 06:03:49 -0500 From: Arash Esbati To: Daniel =?iso-8859-1?Q?Mart=EDn?= Subject: Re: bug#51606: 29.0.50; [PATCH] Show offscreen context with properties References: <86y263hrds.fsf@gnu.org> <835yt6ero5.fsf@gnu.org> <8335oaem70.fsf@gnu.org> Date: Mon, 29 Nov 2021 12:03:35 +0100 In-Reply-To: ("Daniel =?iso-8859-1?Q?Mart=EDn=22?= =?iso-8859-1?Q?'s?= message of "Fri, 26 Nov 2021 20:01:28 +0100") Message-ID: <86czmjkyuw.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 51606 Cc: Eli Zaretskii , Richard Stallman , 51606@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 (---) Daniel Mart=EDn writes: > Eli Zaretskii writes: > >> I'd be surprised. >> >> Richard, do you remember why you removed text properties from the >> blink-matching-open text it shows in the echo-area? > > BTW, the patch looks good to me. But if keeping the text properties is > not a problem, I'd do that unconditionally, without adding another > customization option. WDYT? My vote is to drop my patch and keep the properties. Emacs 29 dev cycle is not old, we can apply my patch or revert the change if complaints arrive. Best, Arash From debbugs-submit-bounces@debbugs.gnu.org Sat Jan 15 08:16:26 2022 Received: (at 51606) by debbugs.gnu.org; 15 Jan 2022 13:16:26 +0000 Received: from localhost ([127.0.0.1]:39426 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8iuv-0006Aw-Tk for submit@debbugs.gnu.org; Sat, 15 Jan 2022 08:16:26 -0500 Received: from quimby.gnus.org ([95.216.78.240]:49350) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8iut-00064j-Ek for 51606@debbugs.gnu.org; Sat, 15 Jan 2022 08:16:24 -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=wd4RJh3fZF2QyA/1LaRtA/J8wKdbjs35STJH7hx9YnM=; b=FmVBk3lSnLJJkeCS3q7zXJ8JJH Q08Rokn72qurBdUOLmPF3UVt6sAJona9pxUWfGUWeh5nkMW0r34pawis4jIunuo4Ip/UT51QFhp2a MU5e+81IQmy4tTOFOmHnPF5xr9R/v5omncmroZDLGkWYIwOBB668hsoRMklsDaPni8b0=; Received: from [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 1n8iuk-0004ZI-I0; Sat, 15 Jan 2022 14:16:17 +0100 From: Lars Ingebrigtsen To: Arash Esbati Subject: Re: bug#51606: 29.0.50; [PATCH] Show offscreen context with properties References: <86y263hrds.fsf@gnu.org> <835yt6ero5.fsf@gnu.org> <8335oaem70.fsf@gnu.org> <86czmjkyuw.fsf@gnu.org> X-Now-Playing: Arto Lindsay's _Prize_: "Interior Life" Date: Sat, 15 Jan 2022 14:16:13 +0100 In-Reply-To: <86czmjkyuw.fsf@gnu.org> (Arash Esbati's message of "Mon, 29 Nov 2021 12:03:35 +0100") Message-ID: <87bl0dta02.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: Arash Esbati writes: > My vote is to drop my patch and keep the properties. OK; now done in Emacs 29. 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: 51606 Cc: Eli Zaretskii , 51606@debbugs.gnu.org, Richard Stallman , Daniel =?utf-8?Q?Mart=C3=ADn?= 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 (---) Arash Esbati writes: > My vote is to drop my patch and keep the properties. OK; now done in Emacs 29. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Sat Jan 15 08:16:30 2022 Received: (at control) by debbugs.gnu.org; 15 Jan 2022 13:16:30 +0000 Received: from localhost ([127.0.0.1]:39429 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8iv0-0006Ef-8Y for submit@debbugs.gnu.org; Sat, 15 Jan 2022 08:16:30 -0500 Received: from quimby.gnus.org ([95.216.78.240]:49366) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n8iuy-00068i-Re for control@debbugs.gnu.org; Sat, 15 Jan 2022 08:16:29 -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=lufvKJ0SgpSDhDvr7BOd2NjfLleC+vQRSRqmnZ8gHRs=; b=ujR4Qg1g09G00RpBfdc312VCEd F9Ig1lVQ5OlL1Rn0JI1fEWurZT1BCewWqBLS5zewcJ6trsPPV5bp7NtetMALUOxOaubMbdftZ6cYk uK7FIfxnqC7ouhXikkTeYFbjUgP6Z4prsV7H0HLl3TOGrkhussYt+Jf5gsF5b136JK3w=; Received: from [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 1n8iuq-0004ZT-N1 for control@debbugs.gnu.org; Sat, 15 Jan 2022 14:16:22 +0100 Date: Sat, 15 Jan 2022 14:16:20 +0100 Message-Id: <87a6fxt9zv.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #51606 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 51606 29.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 51606 29.1 quit From unknown Fri Aug 15 17:22:46 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 13 Feb 2022 12:24:05 +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