From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: c-ts-mode: (eq treesit-font-lock-level 2) doesn't fontify parameter names. Date: Sat, 04 Feb 2023 20:13:20 +0200 Message-ID: <83bkm9ti2n.fsf@gnu.org> References: <85fc0396-bf75-c059-3871-80a5cae8ab94@yandex.ru> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="19103"; mail-complaints-to="usenet@ciao.gmane.io" Cc: acm@muc.de, emacs-devel@gnu.org To: Dmitry Gutov Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sat Feb 04 19:13:55 2023 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pON2x-0004o2-8R for ged-emacs-devel@m.gmane-mx.org; Sat, 04 Feb 2023 19:13:55 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1pON2Q-0003IO-0e; Sat, 04 Feb 2023 13:13:23 -0500 Original-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 1pON2L-0003Fv-5d for emacs-devel@gnu.org; Sat, 04 Feb 2023 13:13:18 -0500 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pON2K-00021W-5S; Sat, 04 Feb 2023 13:13:16 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=Uyc0MW9t2soIPWB4r5vw5BdDZIaKzXJ6A++/KeOk4ck=; b=YvMRk6pabubq r+DQ/N9necRbQKyrC+YWibADlDO5dsklv90T9ZyEqmihCVSbrd+H/+yWEYizs0hLj3v5TDTbdsrTC 3gu9Mt3Fozd1qkcGsiVk1EZmH65ocoZMmfs0TDi6oJOOP2a89z+xAdOVgdA798fQPxMbAi53JS5xT cmAyX5//q+4NI73B/N3qw78u4N6x32iYX0Naeb5p+1P+BzWfw6p3wp7aebdYlziOFrV9i8x/PB+uc 1xhooJqQsQCphXEJaWHbEIL0f/3JPIxS8SZwCiPEbdz/LLg6Id/gqmhx55uWait8gyOzEfWHD6iag IOGd5Ev7DBVtE44w76VgZg==; Original-Received: from [87.69.77.57] (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 1pON2H-0005Rx-1k; Sat, 04 Feb 2023 13:13:15 -0500 In-Reply-To: <85fc0396-bf75-c059-3871-80a5cae8ab94@yandex.ru> (message from Dmitry Gutov on Sat, 4 Feb 2023 19:32:11 +0200) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:302971 Archived-At: > Date: Sat, 4 Feb 2023 19:32:11 +0200 > From: Dmitry Gutov > > On 04/02/2023 16:49, Alan Mackenzie wrote: > > Setting treesit-font-lock-level to 2 for c-ts-mode fontifies variable > > definitions, but not parameter definitions. > > The patch below seems to fix that (the functionality was basically > implemented already). I suggest we install it on emacs-29, for > consistency with other modes, among other things. AFAIU, this patch will fontify variables in function parameter lists at level 1, not 2, but I don't mind.