diff options
-rw-r--r-- | bin/hi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/hi.c b/bin/hi.c index 444e867a..463c4fcc 100644 --- a/bin/hi.c +++ b/bin/hi.c @@ -271,7 +271,7 @@ static const struct Language { const struct Syntax *syntax; size_t len; } Languages[] = { - { "c", "[.][ch]$", CSyntax, ARRAY_LEN(CSyntax) }, + { "c", "[.][chly]$", CSyntax, ARRAY_LEN(CSyntax) }, { "make", "[.]mk$|^Makefile$", MakeSyntax, ARRAY_LEN(MakeSyntax) }, { "mdoc", "[.][1-9]$", MdocSyntax, ARRAY_LEN(MdocSyntax) }, { "rust", "[.]rs$", RustSyntax, ARRAY_LEN(RustSyntax) }, |