From b2de730b6105964949df8bcf3937704108ba12b0 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Tue, 29 Dec 2020 22:39:16 -0500 Subject: Add make lexer This is kind of a mess and needs to be cleaned up against more careful reading of the make grammar. --- bin/hilex/irc.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'bin/hilex/irc.c') diff --git a/bin/hilex/irc.c b/bin/hilex/irc.c index a83b55e6..deb35829 100644 --- a/bin/hilex/irc.c +++ b/bin/hilex/irc.c @@ -22,11 +22,12 @@ #include "hilex.h" static const char *IRC[ClassCap] = { - [Keyword] = "\00315", - [Macro] = "\0033", - [Comment] = "\0032", - [String] = "\00310", - [StringFormat] = "\00311", + [Keyword] = "\00315", + [Macro] = "\0033", + [Comment] = "\0032", + [String] = "\00310", + [StringFormat] = "\00311", + [Interpolation] = "\0037", }; static void ircHeader(const char *opts[]) { -- cgit 1.4.1