diff options
Diffstat (limited to '')
-rw-r--r-- | bin/hilex/hilex.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/hilex/hilex.c b/bin/hilex/hilex.c index 5b40f280..6e308249 100644 --- a/bin/hilex/hilex.c +++ b/bin/hilex/hilex.c @@ -32,6 +32,7 @@ static const struct { const char *pattern; } Lexers[] = { { &LexC, "c", "[.][chlmy]$" }, + { &LexMdoc, "mdoc", "[.][1-9]$" }, { &LexText, "text", "[.]txt$" }, }; @@ -123,6 +124,7 @@ int main(int argc, char *argv[]) { *lexer->in = file; if (formatter->header) formatter->header(NULL); for (enum Class class; None != (class = lexer->lex());) { + assert(class < ClassCap); formatter->format(NULL, class, *lexer->text); } if (formatter->footer) formatter->footer(NULL); |