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: Missing entries for Perl in etags-regen-file-extensions -- okay for emacs-30? Date: Fri, 20 Sep 2024 13:34:38 +0300 Message-ID: <86h6aa7gw1.fsf@gnu.org> References: <87y13mznw9.fsf@zephyr.silentflame.com> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="23087"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: Sean Whitton , Dmitry Gutov Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Fri Sep 20 12:35:25 2024 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 1srayx-0005jS-Q2 for ged-emacs-devel@m.gmane-mx.org; Fri, 20 Sep 2024 12:35:23 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1srayK-0003T7-7A; Fri, 20 Sep 2024 06:34:44 -0400 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 1srayI-0003Sx-Ga for emacs-devel@gnu.org; Fri, 20 Sep 2024 06:34:42 -0400 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 1srayI-0005dT-8G; Fri, 20 Sep 2024 06:34:42 -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=sN/bI3N9rlfCJxiVrIUQ5PZb6AmdvwheJyEPT+ZeLHU=; b=lntuGbsiGufa IpWCf2OWlwIsYE4IRsACXC8lUWXHuJ2XglZLvht7JnTIlMzHkeVHvF8A3MRFlaxigBpYTpJGlc9gD Cwk+Xjn4lISDxpyil5fakxq+YGJKAS3NQPPL40mOGZcUygvyLWw4xxDkEcfRMMaul3ph18WXk6m4G cSvCPbOp6vfltEnTNqHP1uAmh0ArtpiqIwezR6khTN60TzNyzfgj1sOpDe6eVsaVzVk7Wpi9dE9Bn F+So31SUQ2aSEsMikcXIIWRLnJ2XmAi6N8nQ5yMkP4/iH1sQT9a3a+MIPtwcnuuBRqkgRQj2TQt2A 4b/9qRM8sscgDQ2zUaHFsw==; In-Reply-To: <87y13mznw9.fsf@zephyr.silentflame.com> (message from Sean Whitton on Fri, 20 Sep 2024 10:15:50 +0100) 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:323829 Archived-At: > From: Sean Whitton > Date: Fri, 20 Sep 2024 10:15:50 +0100 > > Hello, > > Can I install this simple change on the release branch, please? > > -- >8 -- > --- > lisp/progmodes/etags-regen.el | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/lisp/progmodes/etags-regen.el b/lisp/progmodes/etags-regen.el > index 21ea9bfb8b3..e97b0cd7574 100644 > --- a/lisp/progmodes/etags-regen.el > +++ b/lisp/progmodes/etags-regen.el > @@ -119,7 +119,7 @@ etags-regen-regexp-alist > ;; http://lists.gnu.org/archive/html/emacs-devel/2018-01/msg00323.html > (defcustom etags-regen-file-extensions > '("rb" "js" "py" "pl" "el" "c" "cpp" "cc" "h" "hh" "hpp" > - "java" "go" "cl" "lisp" "prolog" "php" "erl" "hrl" > + "java" "go" "cl" "lisp" "prolog" "php" "erl" "hrl" "pl" "pm" > "F" "f" "f90" "for" "cs" "a" "asm" "ads" "adb" "ada") > "Code file extensions for `etags-regen-mode'. We already have "pl" in the list. Adding "pm" is okay, but then why only it? why not add all the extensions that 'etags' supports? Dmitry, why do we need an explicit list instead of asking 'etags' which extensions it supports?