diff options
author | June McEnroe <june@causal.agency> | 2019-02-10 20:34:20 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-02-10 20:34:20 -0500 |
commit | 8110bc3af5c547b91cdd863c575b5a9c13f62b8e (patch) | |
tree | bcfa34b9b90aa6af57ee0d1180eb499c81a7ec13 /bin/hi.c | |
parent | Don't match DQ string inside SQ string (diff) | |
download | src-8110bc3af5c547b91cdd863c575b5a9c13f62b8e.tar.gz src-8110bc3af5c547b91cdd863c575b5a9c13f62b8e.zip |
Add plain text "language" to hi
Diffstat (limited to '')
-rw-r--r-- | bin/hi.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/hi.c b/bin/hi.c index 50b9b064..8a254ce9 100644 --- a/bin/hi.c +++ b/bin/hi.c @@ -213,6 +213,7 @@ static const struct Language { { "make", "[.]mk$|^Makefile$", MakeSyntax, ARRAY_LEN(MakeSyntax) }, { "mdoc", "[.][1-9]$", MdocSyntax, ARRAY_LEN(MdocSyntax) }, { "sh", "[.]sh$", ShSyntax, ARRAY_LEN(ShSyntax) }, + { "text", "[.]txt$", NULL, 0 }, }; static regex_t compile(const char *pattern, int flags) { @@ -634,7 +635,7 @@ int main(int argc, char *argv[]) { name = strrchr(path, '/'); name = (name ? &name[1] : path); } - if (!lang.syntax && !matchLanguage(&lang, name)) { + if (!lang.name && !matchLanguage(&lang, name)) { errx(EX_USAGE, "cannot infer language for %s", name); } if (!opts[Title]) opts[Title] = name; |