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: Tree-sitter integration in python.el Date: Sun, 16 Oct 2022 11:18:06 +0300 Message-ID: <831qr85ght.fsf@gnu.org> References: <3A68545C-2E40-4BB4-8563-8041A5452634@gmail.com> <87y1twlr0v.fsf@gmail.com> <72A63531-21A6-43BE-A302-D554A745F360@gmail.com> <834jw45inb.fsf@gnu.org> <1DE5E6B3-27CB-47C1-984F-5830387A7711@gmail.com> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="13655"; mail-complaints-to="usenet@ciao.gmane.io" Cc: orontee@gmail.com, emacs-devel@gnu.org To: Yuan Fu Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sun Oct 16 10:20:01 2022 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 1ojysL-0003Pg-83 for ged-emacs-devel@m.gmane-mx.org; Sun, 16 Oct 2022 10:20:01 +0200 Original-Received: from localhost ([::1]:44866 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ojysK-0008R5-0E for ged-emacs-devel@m.gmane-mx.org; Sun, 16 Oct 2022 04:20:00 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:41810) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ojyqj-0006Vj-MH for emacs-devel@gnu.org; Sun, 16 Oct 2022 04:18:23 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:57780) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ojyqj-0004Wi-E6; Sun, 16 Oct 2022 04:18:21 -0400 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=Ss4GQ6J3PIWmob4pCTOETj3nKt/uCaJYFCWgAGYUNuE=; b=S7vMGiiaiwcn QpQ5bm1KhEJGMgLwERwF7W7yWIjih6TAigaB57myxI1wwffE9zWzfSD6bgXZ1Ylx9FnF63+KX+s6e EPDHK4MVzgDdvchycoaxZAgfxBXdwhHtGQcIEIUM3cH7v+jbbm7GNy0m2vIiHvEbnsc4OuYf9Ttk9 gmxmjXlSuw09ecGgZophfMNiYsdN2wKUzb1F36zCxuLmD56G4Dcz95J/yacBoAJhmafsbSwT6ArPb pu1QRTDteb/cQyMahVQjkNb3ifv9lRb5NKmC5v0q7ZfJUSqeMid/+wVRYRSKbOsD6786IB0d2Su/s TQbZzunNfLaE6MH2h4B/Ww==; Original-Received: from [87.69.77.57] (port=1248 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 1ojyqi-0005dv-IM; Sun, 16 Oct 2022 04:18:21 -0400 In-Reply-To: <1DE5E6B3-27CB-47C1-984F-5830387A7711@gmail.com> (message from Yuan Fu on Sun, 16 Oct 2022 01:15:46 -0700) 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" Xref: news.gmane.io gmane.emacs.devel:297837 Archived-At: > From: Yuan Fu > Date: Sun, 16 Oct 2022 01:15:46 -0700 > Cc: orontee@gmail.com, > emacs-devel@gnu.org > > >> https://github.com/casouri/tree-sitter-module > > > > That script seems to build an Emacs module? Is that really required? > > AFAIU, the tree-sitter branch loads the language modules directly, not > > via the emacs-module interface. So why would we need to produce an > > Emacs module from each language definition library? > > I forgot to remove old files from that repo. The script should build an ordinary dynamic library. OK, thanks.