From 325515f9792321c3ccc183a9e70fe121a5337fc3 Mon Sep 17 00:00:00 2001 From: lu4nx Date: Wed, 23 Nov 2022 23:54:54 +0800 Subject: [PATCH] Support Racket programs in 'etags' * lib-src/ctags.c (Scheme_suffixes): Add the Racket language extension ".rkt". Copyright-paperwork-exempt: yes --- lib-src/etags.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib-src/etags.c b/lib-src/etags.c index ed8a2184649..3107c7b380e 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c @@ -774,7 +774,7 @@ static const char Rust_help [] = /* Can't do the `SCM' or `scm' prefix with a version number. */ static const char *Scheme_suffixes [] = - { "oak", "sch", "scheme", "SCM", "scm", "SM", "sm", "ss", "t", NULL }; + { "oak", "rkt", "sch", "scheme", "SCM", "scm", "SM", "sm", "ss", "t", NULL }; static const char Scheme_help [] = "In Scheme code, tags include anything defined with 'def' or with a\n\ construct whose name starts with 'def'. They also include\n\ -- 2.39.5