From unknown Sun Jun 22 17:11:49 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#58755 <58755@debbugs.gnu.org> To: bug#58755 <58755@debbugs.gnu.org> Subject: Status: 29.0.50; Font locking not enabling for ts-mode Reply-To: bug#58755 <58755@debbugs.gnu.org> Date: Mon, 23 Jun 2025 00:11:49 +0000 retitle 58755 29.0.50; Font locking not enabling for ts-mode reassign 58755 emacs submitter 58755 Theodor Thornhill severity 58755 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 24 02:43:43 2022 Received: (at submit) by debbugs.gnu.org; 24 Oct 2022 06:43:43 +0000 Received: from localhost ([127.0.0.1]:46860 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1omrBX-00042G-GV for submit@debbugs.gnu.org; Mon, 24 Oct 2022 02:43:43 -0400 Received: from lists.gnu.org ([209.51.188.17]:53992) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1omrBW-000428-35 for submit@debbugs.gnu.org; Mon, 24 Oct 2022 02:43:42 -0400 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 1omrBV-000796-Aw for bug-gnu-emacs@gnu.org; Mon, 24 Oct 2022 02:43:41 -0400 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 1omrBM-0007nf-ST for bug-gnu-emacs@gnu.org; Mon, 24 Oct 2022 02:43:41 -0400 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=1666593810; 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=WpfQckLwwAcAnBW4O/NJvjmPm/Jm4y8rUYSbeTxHs8I=; b=kOp5F2vohsU4XOY3vgfOEymAvGJN432gMlmc/zxFx9YL/L0WNy/Emelm7DpmPAqPTu2uMu sd7kHPx91z5TBg5/Dgdn0vuGOekklz6tNi1LRxoMPrOI3lZzdrXRYBYqjbqvuKmmKIuTF2 YU8KHM1qXnJRqck7kYOHEZ8RL5WeBjWygeyys3PK1p9rBhKvD3SydP/y3oiDKuuouJSvD3 kzBI08zlYQvCwfeDy14XuZj9PpDEeI47i+vvJ74+AHNapRrH9XdyO2ACemMmOGSbh38loS yDbwOOVhqrjk8q1KR4ISyO/7KKUIX0YTcrZpnJULdUdjg+AeJLfQn5uwWtwIOw== From: Theodor Thornhill To: bug-gnu-emacs@gnu.org Subject: 29.0.50; Font locking not enabling for ts-mode Date: Mon, 24 Oct 2022 08:43:29 +0200 Message-ID: <87czah3eni.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: -23 X-Spam_score: -2.4 X-Spam_bar: -- X-Spam_report: (-2.4 / 5.0 requ) BAYES_00=-1.9, DKIM_INVALID=0.1, DKIM_SIGNED=0.1, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_PASS=-0.001, T_SPF_TEMPERROR=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 Yuan! It seems we cannot really enable font-lock without setting the font-lock-defaults to some non-nil value. I'm not really sure why the 'treesit-font-lock-enable' isn't sufficient, but here's a patch that at least makes ts-mode usable again :) Thanks, Theo --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-Add-in-check-for-font-lock-defaults.patch >From 23d172e17330e5c5d3403fdfacddedfbc91f5b90 Mon Sep 17 00:00:00 2001 From: Theodor Thornhill Date: Mon, 24 Oct 2022 08:35:05 +0200 Subject: [PATCH] Add in check for font-lock-defaults * lisp/progmodes/ts-mode.el (ts-mode): It seems font-lock-defaults has to be set in order for font-locking to work. Add in a guard so that ts-mode can font-lock. --- lisp/progmodes/ts-mode.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/progmodes/ts-mode.el b/lisp/progmodes/ts-mode.el index c23f2bec05..11e5677e28 100644 --- a/lisp/progmodes/ts-mode.el +++ b/lisp/progmodes/ts-mode.el @@ -276,6 +276,8 @@ ts-mode "function_declaration" "lexical_declaration"))) ;; Font-lock. + (unless font-lock-defaults + (setq-local font-lock-defaults '(nil t))) (setq-local treesit-font-lock-settings ts-mode--font-lock-settings) (setq-local treesit-font-lock-feature-list '((minimal) (moderate) (full))) -- 2.34.1 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 24 03:16:09 2022 Received: (at 58755) by debbugs.gnu.org; 24 Oct 2022 07:16:09 +0000 Received: from localhost ([127.0.0.1]:46896 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1omrgv-0004tx-CP for submit@debbugs.gnu.org; Mon, 24 Oct 2022 03:16:09 -0400 Received: from mail-pj1-f51.google.com ([209.85.216.51]:40614) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1omrgs-0004tC-Et for 58755@debbugs.gnu.org; Mon, 24 Oct 2022 03:16:06 -0400 Received: by mail-pj1-f51.google.com with SMTP id r61-20020a17090a43c300b00212f4e9cccdso3138192pjg.5 for <58755@debbugs.gnu.org>; Mon, 24 Oct 2022 00:16:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=to:references:message-id:content-transfer-encoding:cc:date :in-reply-to:from:subject:mime-version:from:to:cc:subject:date :message-id:reply-to; bh=rqCK2k2s50ViXMgSuirkx2wK/UrR4jPZmzX7kiykAjM=; b=EFuhcvkQEd2s54fL3gY8NV0tbpyOQpa2NyhFU/2JlSRjuq6Y1az20dQ4DFTAo8d2H+ PeSpKfza0tpdeQRwpph35kH8PEYBuFLcSZcdTLSKqHTxgieumHuv11VGs4910BYmqqkH iTuikkUzgNEEOhvYyWn2bMRdlyPbgqFVCtIuxhG45fLHLxyw1CUMESWwLA+cLTrVaGtJ 5ZRKSqQqZnPhQB0oHtXsgI2DHJ12e/BwnlvsO/ufUs99Vb1xC4x1DuoL57F9tjLdQSaT 7sIuNVf/ubNJuKRMnIxOE0l2Bmo34PTVKRA6C8SRSNylQyfXUcP9cEVul6nOgdBW++E9 P8Gw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=to:references:message-id:content-transfer-encoding:cc:date :in-reply-to:from:subject:mime-version:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=rqCK2k2s50ViXMgSuirkx2wK/UrR4jPZmzX7kiykAjM=; b=kSpPJ7J5dPoW6icQJ7aHsWDcY2JqmSW0tronHfvbX2Fp/gXb1reChJn1Io+ovqrrhB ETBie2ROX+xxccLGCdNhXmSbtn4bjf+LVisclIsGnnuTMTF36nu4HpbWLw1xUIPExtz7 T+PSCgPdceS8ko1sLkNOTs2oMYXu2knGBWFz8J16gxmY+/lc8/cQCUADOya1cVSpzhd4 eDYesX8M1gZddNb8bwGbgdAXxlvfPZellxVTGz6sCrUOaShz5kKu1j4IA5268QMMx3iL bARdjwuBtLFtAWPcF+wanUr+D4tpyBVzrAjuo+6f2ycFPxtXMZ3nUEiYK2LWYXtw6YW1 eX1A== X-Gm-Message-State: ACrzQf2yrc9JVIV7q6MLsLvIusOItfX+IsjvHaX4X0JfSZknEmt7pLrm 7FTgKQXvaPhp2Akbyrgi3RI= X-Google-Smtp-Source: AMsMyM47Xmf9d9hXqQQdgF5zmNCwpvEQqCqjymM1YHGczQih5X7XJ9TUqIXxXxLQdBNF4yYCkz5gfA== X-Received: by 2002:a17:90b:1bcb:b0:20d:75b8:ee64 with SMTP id oa11-20020a17090b1bcb00b0020d75b8ee64mr36873778pjb.162.1666595760626; Mon, 24 Oct 2022 00:16:00 -0700 (PDT) Received: from smtpclient.apple (cpe-172-117-161-177.socal.res.rr.com. [172.117.161.177]) by smtp.gmail.com with ESMTPSA id 136-20020a62158e000000b0056bcb102e7bsm1383370pfv.68.2022.10.24.00.15.59 (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); Mon, 24 Oct 2022 00:15:59 -0700 (PDT) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3696.120.41.1.1\)) Subject: Re: bug#58755: 29.0.50; Font locking not enabling for ts-mode From: Yuan Fu In-Reply-To: <87czah3eni.fsf@thornhill.no> Date: Mon, 24 Oct 2022 00:15:58 -0700 Content-Transfer-Encoding: quoted-printable Message-Id: References: <87czah3eni.fsf@thornhill.no> To: Theodor Thornhill X-Mailer: Apple Mail (2.3696.120.41.1.1) X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 58755 Cc: 58755@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.0 (-) > On Oct 23, 2022, at 11:43 PM, Theodor Thornhill via Bug reports for = GNU Emacs, the Swiss army knife of text editors = wrote: >=20 > Hi Yuan! >=20 > It seems we cannot really enable font-lock without setting the > font-lock-defaults to some non-nil value. >=20 > I'm not really sure why the 'treesit-font-lock-enable' isn't = sufficient, > but here's a patch that at least makes ts-mode usable again :) >=20 > Thanks, > Theo Hey Theo, sorry for the trouble=E2=80=A6 Yeah font-lock-mode looks at = font-lock-default=E2=80=99s value when turning on and won=E2=80=99t do = anything if it=E2=80=99s value is nil. I thought we are going to install = a new scheme soon so I didn=E2=80=99t change the code. I=E2=80=99ll fix = ts-mode and push. Yuan= From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 24 03:29:35 2022 Received: (at 58755) by debbugs.gnu.org; 24 Oct 2022 07:29:35 +0000 Received: from localhost ([127.0.0.1]:46917 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1omrtu-0005Du-OZ for submit@debbugs.gnu.org; Mon, 24 Oct 2022 03:29:35 -0400 Received: from out0.migadu.com ([94.23.1.103]:17113) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1omrtr-0005Dj-UI for 58755@debbugs.gnu.org; Mon, 24 Oct 2022 03:29:32 -0400 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=1666596570; 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: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=tfbYtson1vJZo9yd+HSzCIfhj5PVbjDbbgePAA1CJhw=; b=0k2JAHmklqyIPoiN/UeumMAD1U1Aw410FAjCDhRMIF4BTkOJgONsWiVRXs32H8beTKQtjp ftc8NsjEVkm2a5vns/BZ+ZuErE35I/6zZJmEfe6goz8xZIaycFg/R2R7oPF+S/8EMwqzua cr8IrcTepaBTcPv8t7MgdfntEBDuLFyDoc0/85J60rkTDYFRbzAz9KLZayQpNPUemGrIbD hheWGiwEJw1GOVB1RwCryDsrfKKd+00qQRuDvBKYqDeWw7h8hP6+J13jJaxUqx6jo48iqn apIjEtpq2GWThjrs0Qt1/9FWaPB8Bb1pZiuYFDwwmsU88q3ys783rsdAcGJexg== From: Theodor Thornhill To: Yuan Fu Subject: Re: bug#58755: 29.0.50; Font locking not enabling for ts-mode In-Reply-To: References: <87czah3eni.fsf@thornhill.no> Date: Mon, 24 Oct 2022 09:29:28 +0200 Message-ID: <877d0p65nr.fsf@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.7 (/) X-Debbugs-Envelope-To: 58755 Cc: 58755@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 (-) Yuan Fu writes: >> On Oct 23, 2022, at 11:43 PM, Theodor Thornhill via Bug reports for GNU = Emacs, the Swiss army knife of text editors wrote: >>=20 >> Hi Yuan! >>=20 >> It seems we cannot really enable font-lock without setting the >> font-lock-defaults to some non-nil value. >>=20 >> I'm not really sure why the 'treesit-font-lock-enable' isn't sufficient, >> but here's a patch that at least makes ts-mode usable again :) >>=20 >> Thanks, >> Theo > > Hey Theo, sorry for the trouble=E2=80=A6 Yeah font-lock-mode looks at fon= t-lock-default=E2=80=99s value when turning on and won=E2=80=99t do anythin= g if it=E2=80=99s value is nil. I thought we are going to install a new sch= eme soon so I didn=E2=80=99t change the code. I=E2=80=99ll fix ts-mode and = push. > No worries. Did we decide upon something there? Theo From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 24 16:16:57 2022 Received: (at 58755) by debbugs.gnu.org; 24 Oct 2022 20:16:58 +0000 Received: from localhost ([127.0.0.1]:49621 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1on3sX-0000ho-F6 for submit@debbugs.gnu.org; Mon, 24 Oct 2022 16:16:57 -0400 Received: from mail-pf1-f173.google.com ([209.85.210.173]:46837) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1on3sT-0000hX-71 for 58755@debbugs.gnu.org; Mon, 24 Oct 2022 16:16:56 -0400 Received: by mail-pf1-f173.google.com with SMTP id b29so5492230pfp.13 for <58755@debbugs.gnu.org>; Mon, 24 Oct 2022 13:16:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=to:references:message-id:content-transfer-encoding:cc:date :in-reply-to:from:subject:mime-version:from:to:cc:subject:date :message-id:reply-to; bh=FmBxFgEJHdxwPIY04zjjopCEnx9sgxa0t1LGqfMBRtA=; b=mxNYfY1OjeuMqhN2T4jiq1/8eXb4Dqxh961WNWCQr/rj3Iz1d6vwFTxTabZX1bCzad O7X9d/vfN+TDOb4Kz3+lio41jYXPDXPhkyVbyf9Mx7pCWAKyt3WtR+izJ/tzoMwimVag iGgjEEpSKDIBUBbraVHjwLiyC+gojIEyfkQVe9NzXRGczFps0BkTzIS4T4jOufC21l0J bxLMKw7k5ir+fscDMmULSt5qKvydvaDgJ3gTsZYfZ/LogzrrEzaVjCOak9qiRkK82Fr7 B6NCOoHhof5nBpEruTLxZ4GBkEw7XkYA+32PDgZHoppAAdOlpd1JmCqdtyUmkL1ahaO0 ybyQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=to:references:message-id:content-transfer-encoding:cc:date :in-reply-to:from:subject:mime-version:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=FmBxFgEJHdxwPIY04zjjopCEnx9sgxa0t1LGqfMBRtA=; b=iYbhjFbnBeOXSCZ2FK7FMJ/xUHnJkIIaejSMbdHqgtTz1JIteMRDYLbhA1p+24IteY Fxis+5EMV427hREbi5HE8tEPMZFVxPwNxbjJBVfxfQK5VwDLaqFvD080qZrBGGybMYMz Vk000UpAS7zFv0ZeccGVWKLidSD/AoyuYWY428gfNycuZzuZfXA1FPElYuvkjsfEAo1N ZSz3Pw4Xy6nDOwbjTuupGAHY/pBvnCg9I411nqCPOT7gqzOyG9V0w8dhyeQT6+YSa0SO syyVEv+bXDdAVy209fw9FBVTA0qGLVkUUkKNG7j0pXypZ9qW6MstJN8j7RxGvAI/gU0u sEtw== X-Gm-Message-State: ACrzQf1hOmB6X/vWed1Mf4o3cExhwCVwqGMadPrH33dn9u2oBEaqmHTD d3g4uLjmWxH3l+tC3xYNPJE= X-Google-Smtp-Source: AMsMyM5q5VY41LhjzzH2WG/MpVZ+mrCtS2DDQKcb0ZDccK63KRN+O0VPsiyLPbkoqUKReE6HqLG0ng== X-Received: by 2002:a63:2b4b:0:b0:440:2963:5863 with SMTP id r72-20020a632b4b000000b0044029635863mr28879842pgr.28.1666642606968; Mon, 24 Oct 2022 13:16:46 -0700 (PDT) Received: from smtpclient.apple (cpe-172-117-161-177.socal.res.rr.com. [172.117.161.177]) by smtp.gmail.com with ESMTPSA id w61-20020a17090a6bc300b0021282014066sm4373515pjj.9.2022.10.24.13.16.45 (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); Mon, 24 Oct 2022 13:16:45 -0700 (PDT) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3696.120.41.1.1\)) Subject: Re: bug#58755: 29.0.50; Font locking not enabling for ts-mode From: Yuan Fu In-Reply-To: <877d0p65nr.fsf@thornhill.no> Date: Mon, 24 Oct 2022 13:16:43 -0700 Content-Transfer-Encoding: quoted-printable Message-Id: <18A2D8C1-3F7D-4D23-8BC9-A368A8C95A92@gmail.com> References: <87czah3eni.fsf@thornhill.no> <877d0p65nr.fsf@thornhill.no> To: Theodor Thornhill X-Mailer: Apple Mail (2.3696.120.41.1.1) X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 58755 Cc: 58755@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.0 (-) > On Oct 24, 2022, at 12:29 AM, Theodor Thornhill = wrote: >=20 > Yuan Fu writes: >=20 >>> On Oct 23, 2022, at 11:43 PM, Theodor Thornhill via Bug reports for = GNU Emacs, the Swiss army knife of text editors = wrote: >>>=20 >>> Hi Yuan! >>>=20 >>> It seems we cannot really enable font-lock without setting the >>> font-lock-defaults to some non-nil value. >>>=20 >>> I'm not really sure why the 'treesit-font-lock-enable' isn't = sufficient, >>> but here's a patch that at least makes ts-mode usable again :) >>>=20 >>> Thanks, >>> Theo >>=20 >> Hey Theo, sorry for the trouble=E2=80=A6 Yeah font-lock-mode looks at = font-lock-default=E2=80=99s value when turning on and won=E2=80=99t do = anything if it=E2=80=99s value is nil. I thought we are going to install = a new scheme soon so I didn=E2=80=99t change the code. I=E2=80=99ll fix = ts-mode and push. >>=20 >=20 > No worries. Did we decide upon something there? >=20 > Theo No, not yet. I still think a central variable has more merits and less = problems than minor modes as they are now. We=E2=80=99ll need discussion = and more good ideas :-) Yuan From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 27 19:41:59 2022 Received: (at control) by debbugs.gnu.org; 27 Oct 2022 23:41:59 +0000 Received: from localhost ([127.0.0.1]:59707 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ooCVb-00075q-DO for submit@debbugs.gnu.org; Thu, 27 Oct 2022 19:41:59 -0400 Received: from mail-pl1-f178.google.com ([209.85.214.178]:41532) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ooCVW-00075a-CB for control@debbugs.gnu.org; Thu, 27 Oct 2022 19:41:57 -0400 Received: by mail-pl1-f178.google.com with SMTP id io19so3309284plb.8 for ; Thu, 27 Oct 2022 16:41:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=to:date:message-id:subject:mime-version:content-transfer-encoding :from:from:to:cc:subject:date:message-id:reply-to; bh=TUoJeFNsFmFLjqb2NZFvUbp8HEMyNxd0Y2+n5EtQUnY=; b=DESOnbuVZjlBRz9lI+WB5Te0Hqu0KpQECfzdWy4C2tLUPIpxLO1UPhQ66mATfQSYhj FC10cyNwmGzeloviMxlL855UGn1/EUrlvPZQmi3jE45SiFOEnzuAylEVUoq4dbuhWHh6 2s1H5ENUBZkQWVshCHkruztpT0uVqKQ9SWmy4P3L7ER4cOHoKJKsS3l7itWJue42lNOc 1Xzc2d2V93eKDvohOk8tQ7pnbVv/pd94Cp5/oOPtusLzP7e/oSgdfOuZ56ED0MnsS55i JnaehjGYFnmwi+tB85m92CwiRPPsPVBt+Qk9X250Tx5JXTvwRll5+mcZu26CwaGEUpvY J4zQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=to:date:message-id:subject:mime-version:content-transfer-encoding :from:x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=TUoJeFNsFmFLjqb2NZFvUbp8HEMyNxd0Y2+n5EtQUnY=; b=v7CmEjSXkMB4fByV8zZ+oXkjQPrYUWk9xPUOhQT6SreeoIy27ijnWPd1iBS3VEcFbj mkXfOW+xSxqzxF/86NHbKz7EuwVVJAtLeZQg/X/hbq/kA22ikMHu/wejvCUQ1Xv6tuFA TUw+h8LD9VCSC+kBwNKeEaTItT86A6pBuumKDH8lX6czEAAQ0UXZ2HlEvM4gR2fpkh4H Q226w+G0qF/mzLMrtFcSGzYvDSChy90ydJ+VPcYgf4Ak9mMtILlF6ObFTNUgI2im6iiX ELnTu2jDYglHiINlfpnzfxTd6+gcaTPPMXqNSY8AVX58/ZcsxHzSqtyUylWO6H2vKktO 1VBQ== X-Gm-Message-State: ACrzQf3co6rjXvbusnZHXcu54Xy/vBwz4VeawOKKtfMInnXINfLgVSVM Iu2UQNfQLDS58fyZfrNYnI6tHEhjos4= X-Google-Smtp-Source: AMsMyM6+l3RopTebDViNGActgXk+q+DDp0uCyiz5sRlIYeAlbYHMtJI7UyIe2xgXr9RKm5jT0dEN1g== X-Received: by 2002:a17:902:820a:b0:178:456e:138 with SMTP id x10-20020a170902820a00b00178456e0138mr52112215pln.145.1666914108588; Thu, 27 Oct 2022 16:41:48 -0700 (PDT) Received: from smtpclient.apple ([137.110.46.209]) by smtp.gmail.com with ESMTPSA id i4-20020a170902e48400b001784a45511asm1708933ple.79.2022.10.27.16.41.47 for (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); Thu, 27 Oct 2022 16:41:48 -0700 (PDT) From: Yuan Fu Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3696.120.41.1.1\)) Subject: control message for bug #58755 Message-Id: <26E94793-2EA7-419A-B7AD-917904037A5B@gmail.com> Date: Thu, 27 Oct 2022 16:41:47 -0700 To: control@debbugs.gnu.org X-Mailer: Apple Mail (2.3696.120.41.1.1) 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 (-) close 58755 29.1 quit From unknown Sun Jun 22 17:11:49 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 25 Nov 2022 12:24:10 +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