From unknown Fri Sep 05 16:40:41 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#60748 <60748@debbugs.gnu.org> To: bug#60748 <60748@debbugs.gnu.org> Subject: Status: 30.0.50; [PATCH]: Fix indentation of object_expressions in csharp-ts-mode Reply-To: bug#60748 <60748@debbugs.gnu.org> Date: Fri, 05 Sep 2025 23:40:41 +0000 retitle 60748 30.0.50; [PATCH]: Fix indentation of object_expressions in cs= harp-ts-mode reassign 60748 emacs submitter 60748 Theodor Thornhill severity 60748 normal tag 60748 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Thu Jan 12 03:16:10 2023 Received: (at submit) by debbugs.gnu.org; 12 Jan 2023 08:16:10 +0000 Received: from localhost ([127.0.0.1]:44519 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pFskp-0004sE-00 for submit@debbugs.gnu.org; Thu, 12 Jan 2023 03:16:10 -0500 Received: from lists.gnu.org ([209.51.188.17]:34344) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pFskj-0004rn-Ta for submit@debbugs.gnu.org; Thu, 12 Jan 2023 03:16:05 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pFska-0003Hj-Ie for bug-gnu-emacs@gnu.org; Thu, 12 Jan 2023 03:15:59 -0500 Received: from out2.migadu.com ([2001:41d0:2:aacc::]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pFskY-0001Bm-2u for bug-gnu-emacs@gnu.org; Thu, 12 Jan 2023 03:15:52 -0500 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=thornhill.no; s=key1; t=1673511345; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=AkU56LrBZtobjn/R7usT2UjY2/ijRpnKNrEg14VzImY=; b=dWRyHBp2Nplr1x7ZaZCYAO8aULDkUrJ3ai5BX4FlkW+sBFwzgflooU6HUYXqLUiqvSFKDo qbUbltgaWWX/vyyMrh3aG3AD7HkxKQRXSvbrVIAZfEVhR4Ar8/vvlJkirYofTIYtTxmx14 bSjnBeXpTanINnyCAq/Z+whGXAjN4T0XekvV/X9zKowdIFt0FSQnWTHKkVxmEAsUU1T4UY DNyraScrdF9+FGPv1nW1tl391mP9I1p5EwPMj9aDpw++AmWscYWXnotbxiVlt3OPiUTJpq WeWGwswwBNHr+qU9Rc5iKAOt1IYVP14lVIWRUS6gfi5zkY5FJpP0597Cc5zLYQ== From: Theodor Thornhill To: bug-gnu-emacs@gnu.org Subject: 30.0.50; [PATCH]: Fix indentation of object_expressions in csharp-ts-mode X-Debbugs-Cc: Jostein =?utf-8?Q?Kj=C3=B8nigsen?= Date: Thu, 12 Jan 2023 09:15:44 +0100 Message-ID: <87eds0qibz.fsf@thornhill.no> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Migadu-Flow: FLOW_OUT Received-SPF: pass client-ip=2001:41d0:2:aacc::; envelope-from=theo@thornhill.no; helo=out2.migadu.com X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 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_LOW=-0.7, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_FILL_THIS_FORM_SHORT=0.01 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 Hi Jostein! What do you think of this patch? It fixes typing out this, taken from [0]: ``` namespace Foo { class Foo { void foo() { CatOwner owner = new CatOwner { Cats = new List { new X { Name = "Sylvester", Age=8 }, new Cat { Name = "Whiskers", Age=2 }, new Cat { Name = "Sasha", Age=14 } } }; var x = new { X = 5 }; Foo foo = new Foo { }; Cat cat = new Cat { Cats = new List { new X { Name = "Sten" }, new Y { Foo = "rst" } } }; Cat c = new Foo() { }; RudimentaryMultiValuedDictionary rudimentaryMultiValuedDictionary3 = new RudimentaryMultiValuedDictionary() { {"Group1", new string []{ "Bob", "John", "Mary" } }, { "Group2", new string[]{ "Eric", "Emily", "Debbie", "Jesse" } } }; } } } ``` Are there any regressions, or is this ok to you? Theo [0]: --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-Fix-indentation-of-object_expressions-in-csharp-ts-m.patch >From 6efac3cb4c19c50dfb3d9ab5218e88325ff19441 Mon Sep 17 00:00:00 2001 From: Theodor Thornhill Date: Thu, 12 Jan 2023 09:06:45 +0100 Subject: [PATCH] Fix indentation of object_expressions in csharp-ts-mode * lisp/progmodes/csharp-mode.el (csharp-ts-mode--indent-rules): Make sure the opening brace is indented at parent-bol, and everything else is indented. --- lisp/progmodes/csharp-mode.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lisp/progmodes/csharp-mode.el b/lisp/progmodes/csharp-mode.el index 79afd7f91d..81ce41618e 100644 --- a/lisp/progmodes/csharp-mode.el +++ b/lisp/progmodes/csharp-mode.el @@ -640,6 +640,11 @@ compilation and evaluation time conflicts." ((parent-is "namespace_declaration") parent-bol 0) ((parent-is "class_declaration") parent-bol 0) ((parent-is "constructor_declaration") parent-bol 0) + ((parent-is "initializer_expression") parent-bol csharp-ts-mode-indent-offset) + ((match "{" "anonymous_object_creation_expression") parent-bol 0) + ((parent-is "anonymous_object_creation_expression") parent-bol csharp-ts-mode-indent-offset) + ((match "{" "object_creation_expression") parent-bol 0) + ((parent-is "object_creation_expression") parent-bol 0) ((parent-is "method_declaration") parent-bol 0) ((parent-is "enum_declaration") parent-bol 0) ((parent-is "operator_declaration") parent-bol 0) -- 2.34.1 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Jan 13 05:41:14 2023 Received: (at 60748) by debbugs.gnu.org; 13 Jan 2023 10:41:14 +0000 Received: from localhost ([127.0.0.1]:49660 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pGHUn-00078V-SJ for submit@debbugs.gnu.org; Fri, 13 Jan 2023 05:41:14 -0500 Received: from out-115.mta0.migadu.com ([91.218.175.115]:25706) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pGHUl-00078I-5J for 60748@debbugs.gnu.org; Fri, 13 Jan 2023 05:41:12 -0500 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=thornhill.no; s=key1; t=1673606467; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=Txco8OlPbzvrh8PaOCJJvmXW2a0rEDPzwSWYRfOtagE=; b=azEKvZ26LqBQno37pErmXe/rU9NiQfw9LLBexv7ZpFqJ2rsTzRlpFdAoDxbdsKNLU8+5nx WpF7BS5DLtifNW5EOdgWpNivW3aNeebfp+yyCMrr5eeCVU2X7C/hnibNYDluO/TSrs2AM4 XlSjiSd3z2fJPh1ZI7UAQxFhwjyA+lHu/TxtN+efg16syDCkLQyitDA/WGmOvam2/mtQs3 rXr8zslEypQV/z+Nuu/+awmMHn71zVnHzzwXJEt7s1tEGBEGbnpWmgHxUyQKKitDY3/o7x /lEs55PKDBsoZ6MrH0Y95O88jHjuT+B0jIKnpfnvIYqgPDTSGN85fr3wdfTrzg== From: Theodor Thornhill To: 60748@debbugs.gnu.org Subject: Re: bug#60748: 30.0.50; [PATCH]: Fix indentation of object_expressions in csharp-ts-mode In-Reply-To: <87eds0qibz.fsf@thornhill.no> (Theodor Thornhill's message of "Thu, 12 Jan 2023 09:15:44 +0100") References: <87eds0qibz.fsf@thornhill.no> Date: Fri, 13 Jan 2023 11:41:04 +0100 Message-ID: <877cxqzphb.fsf@thornhill.no> MIME-Version: 1.0 Content-Type: text/plain X-Migadu-Flow: FLOW_OUT X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 60748 Cc: jostein@kjonigsen.net, Jostein =?utf-8?Q?Kj=C3=B8nigsen?= 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 (-) Theodor Thornhill writes: > Hi Jostein! > > Are there any regressions, or is this ok to you? > > Theo > > [0]: Not sure if sent to correct mail, so just appending another one here :) I can't see any regressions right now, so I'll install the patch when you're ok with it :) Theo From debbugs-submit-bounces@debbugs.gnu.org Fri Jan 13 06:16:54 2023 Received: (at 60748) by debbugs.gnu.org; 13 Jan 2023 11:16:54 +0000 Received: from localhost ([127.0.0.1]:49733 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pGI3K-00084m-8c for submit@debbugs.gnu.org; Fri, 13 Jan 2023 06:16:54 -0500 Received: from wout1-smtp.messagingengine.com ([64.147.123.24]:57937) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pGI3I-00084Y-I8 for 60748@debbugs.gnu.org; Fri, 13 Jan 2023 06:16:53 -0500 Received: from compute2.internal (compute2.nyi.internal [10.202.2.46]) by mailout.west.internal (Postfix) with ESMTP id 3BCB9320082A; Fri, 13 Jan 2023 06:16:46 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute2.internal (MEProxy); Fri, 13 Jan 2023 06:16:46 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= secure.kjonigsen.net; h=cc:content-transfer-encoding :content-type:date:date:from:from:in-reply-to:in-reply-to :message-id:mime-version:references:reply-to:sender:subject :subject:to:to; s=fm2; t=1673608605; x=1673695005; bh=RvMQLsJzvZ c6D4uk+BRwncIuyIrlIEkYCSr0WbvYzUc=; b=l34VUQtPMdmkkrwq/8sPzHh2eK TnzPvLtuoGfV1aWbJlffTgDp7RhvZ10LUzzP9zOOi2j4Wttp5ltyBWmCR18iekcp YBvKY37feanA9s22AD8VopOqj9H4C21eAkCrIIBw49Cu7rEsSVGbwzEAgOc45HTq fYHyRVHltA/Ut42IqepBTxv0Jdrg4sYK3UvRCTJ4jdfwNvpSUh/z47tPyNt9ofZt b30p2AT0WVCKTo+ttVRtpgWF2rZ0vjXSHnF1HYUejuYyNM2g5Zm8+2sohmyRJ52j t3YC2pyQkCpjHKxJq3ATc8Atvz8xRzQDrgz7bSH7EJH/6fOL0veWk90VzWrQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:date:feedback-id:feedback-id:from:from:in-reply-to :in-reply-to:message-id:mime-version:references:reply-to:sender :subject:subject:to:to:x-me-proxy:x-me-proxy:x-me-sender :x-me-sender:x-sasl-enc; s=fm3; t=1673608605; x=1673695005; bh=R vMQLsJzvZc6D4uk+BRwncIuyIrlIEkYCSr0WbvYzUc=; b=F7X1bOF+s8GUyeHi6 1SsSUe9Etf+RdsM7IBgDtD3Kyh3WmFSC8+YaQcs+dOuAEL6S6ugwg0frEFzMVpgI 65IIGNyODh2jn1HX+QrzCXJoFSDIyJzqFJUtcNTamaDrRmoZd1E30GbW344ar6m/ bHSa2twcMF7f+akGaXXxJ8llXQPCp4sJ4KHkwTuWJW0/Dm6NfSzHMRbyXGacDWLp sCywPysN8OoZdCsuaud9dW9aWpVpkMIuHp9bJmbTQLxo+P/gi+KF4yPmV/zfRFYw b6e+09/NXDpkjmG6OIwaFy9CGqrYZ38zkjbk52lIX0r3/Y6yQM31uCw6gcD/N/BG OUV0w== X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvhedrleekgddvvdcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenuc fjughrpefkffggfgfuvfhfhfgjtgfgsehtjeertddtfeejnecuhfhrohhmpeflohhsthgv ihhnucfmjhppnhhighhsvghnuceojhhoshhtvghinhesshgvtghurhgvrdhkjhhonhhigh hsvghnrdhnvghtqeenucggtffrrghtthgvrhhnpefhvddvteduteetfedvudeikeeuhfdt keejhefgudffffetjeekleevteeiffdtkeenucevlhhushhtvghrufhiiigvpedtnecurf grrhgrmhepmhgrihhlfhhrohhmpehjohhsthgvihhnsehsvggtuhhrvgdrkhhjohhnihhg shgvnhdrnhgvth X-ME-Proxy: Feedback-ID: ib2f84088:Fastmail Received: by mail.messagingengine.com (Postfix) with ESMTPA; Fri, 13 Jan 2023 06:16:44 -0500 (EST) Message-ID: <8ca99a0e-81fb-c2e9-c47f-8c2f97acdff6@secure.kjonigsen.net> Date: Fri, 13 Jan 2023 12:16:42 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.4.2 Subject: Re: bug#60748: 30.0.50; [PATCH]: Fix indentation of object_expressions in csharp-ts-mode Content-Language: en-US To: Theodor Thornhill , 60748@debbugs.gnu.org References: <87eds0qibz.fsf@thornhill.no> <877cxqzphb.fsf@thornhill.no> From: =?UTF-8?Q?Jostein_Kj=c3=b8nigsen?= In-Reply-To: <877cxqzphb.fsf@thornhill.no> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 60748 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.9 (--) On 13.01.2023 11:41, Theodor Thornhill wrote: > Theodor Thornhill writes: > >> Hi Jostein! >> >> Are there any regressions, or is this ok to you? >> >> Theo >> >> [0]: > Not sure if sent to correct mail, so just appending another one here :) > > I can't see any regressions right now, so I'll install the patch when > you're ok with it :) > > Theo You had a/the right email, but not the right point in time ;) This last week I've been busy, and working almost entirely with TypeScript (and I will for the next weeks too), so I haven't been able to testdrive the new C# changes properly or thouroughly enough to feel confident enough to give feedback. I've looked over the code though, and that looks good to me. If you feel you've done adequate testing, don't wait for me to merge this. -- Jostein From debbugs-submit-bounces@debbugs.gnu.org Fri Jan 13 06:42:45 2023 Received: (at 60748) by debbugs.gnu.org; 13 Jan 2023 11:42:45 +0000 Received: from localhost ([127.0.0.1]:49759 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pGISL-0000QF-2l for submit@debbugs.gnu.org; Fri, 13 Jan 2023 06:42:45 -0500 Received: from out-104.mta0.migadu.com ([91.218.175.104]:53823) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pGISI-0000Q5-Lr for 60748@debbugs.gnu.org; Fri, 13 Jan 2023 06:42:43 -0500 Date: Fri, 13 Jan 2023 12:42:25 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=thornhill.no; s=key1; t=1673610160; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=IfZ8D5K6soFaYBdGUXjgt/FScdm2xJbNQYvFYLtmRBc=; b=hYhfBvlGNe/l5kAwsBN4ae8ZATL945rMZTtxPfe54uyzURyC10emp9bRXugVMsmOxQ0GtF F4qfVg/5IKCYNh2tKX2+uX49X5SALPBeZXxihFJ8fXy63dt4woiaBLfUoscUpr3sZr1uiL HG29sR3PcDf9tVUqT/ZdaC46D4dWgkXjIUP35EkXGi0vWow36W0vgxFXRXEj83souiUIVp noTu8DSlFpAMKGpCW2NZMWQx0J9KrKQNsHaQdqetka8cvC3jX9VH1KV4UQbtdUaFd0C5WW DBQCgt1/l/oBwVcN550aRy36lo42gN/pkaGB1bcLOj81T7WyIdSLqElwpT7fXQ== X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Theodor Thornhill To: =?ISO-8859-1?Q?Jostein_Kj=F8nigsen?= , 60748@debbugs.gnu.org Subject: =?US-ASCII?Q?Re=3A_bug=2360748=3A_30=2E0=2E50?= =?US-ASCII?Q?=3B_=5BPATCH=5D=3A_Fix_indenta?= =?US-ASCII?Q?tion_of_object=5Fexpressions_in_csharp-ts-mode?= In-Reply-To: <8ca99a0e-81fb-c2e9-c47f-8c2f97acdff6@secure.kjonigsen.net> References: <87eds0qibz.fsf@thornhill.no> <877cxqzphb.fsf@thornhill.no> <8ca99a0e-81fb-c2e9-c47f-8c2f97acdff6@secure.kjonigsen.net> Message-ID: <72629C25-263B-4B81-9138-255C819FA473@thornhill.no> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Migadu-Flow: FLOW_OUT X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 60748 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 (-) On 13 January 2023 12:16:42 CET, "Jostein Kj=C3=B8nigsen" wrote: >On 13=2E01=2E2023 11:41, Theodor Thornhill wrote: >> Theodor Thornhill writes: >>=20 >>> Hi Jostein! >>>=20 >>> Are there any regressions, or is this ok to you? >>>=20 >>> Theo >>>=20 >>> [0]: >> Not sure if sent to correct mail, so just appending another one here :) >>=20 >> I can't see any regressions right now, so I'll install the patch when >> you're ok with it :) >>=20 >> Theo > >You had a/the right email, but not the right point in time ;) > >This last week I've been busy, and working almost entirely with TypeScrip= t (and I will for the next weeks too), so I haven't been able to testdrive = the new C# changes properly or thouroughly enough to feel confident enough = to give feedback=2E > >I've looked over the code though, and that looks good to me=2E > >If you feel you've done adequate testing, don't wait for me to merge this= =2E > >-- >Jostein > Nice, didn't mean to rush, just never got used to all the mails:) But now I know :) I'll install it tonight, feel free to report back if something's messed up= ! Theo=20 From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 15 16:08:02 2023 Received: (at control) by debbugs.gnu.org; 15 Jan 2023 21:08:02 +0000 Received: from localhost ([127.0.0.1]:59615 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pHAEU-0001DZ-98 for submit@debbugs.gnu.org; Sun, 15 Jan 2023 16:08:02 -0500 Received: from out-190.mta0.migadu.com ([91.218.175.190]:40948) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pHAES-0001DK-Ag for control@debbugs.gnu.org; Sun, 15 Jan 2023 16:08:01 -0500 Date: Sun, 15 Jan 2023 22:07:54 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=thornhill.no; s=key1; t=1673816878; h=from:from:reply-to:subject:subject:date:date:to:to:cc; bh=alVUIoKGSbLsfoWoq+UkSnnhh/77tm7yEDT6JS0C/SU=; b=XGH5txTjKh/8poYTcgL7/fLzvJqy0EY7++hVD2KIOOOLWZIIjQL6QduBsasJIFBH+EMudG 66F7Ej1VpSfycxojsN3QqdzLH03LEi+elZZrED6YqTV3hJd+qAUXPxkUeJq3dabLdYqWqi GwDH17Yovcf8dSXdifYKv5t7FtoEmudRg7yQXmop6U0KQtYiv3u8KQu/MZUyLNxhWuumYh pL11KYIgmOV6zEzW/y1UkZRwZyfGDXzNtJk/CdmM5Ee/BrWYyeyF6XVo4TaGOnoxaIlAHi Ck0+HeFI7LWUFwYaNfUeOsVaFLveN8ii+mmK6YZsHvxH/0gikTeafB/XyAHk4w== To: control@debbugs.gnu.org X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Theodor Thornhill Subject: control message for bug #60748 X-Migadu-Flow: FLOW_OUT X-Spam-Score: 0.1 (/) 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" Message-Id: X-Spam-Score: -1.0 (-) close 60748 30.1 quit From unknown Fri Sep 05 16:40:41 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 13 Feb 2023 12: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