diff options
author | June McEnroe <june@causal.agency> | 2020-12-29 22:39:16 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-12-29 22:39:16 -0500 |
commit | b2de730b6105964949df8bcf3937704108ba12b0 (patch) | |
tree | d8a1653d32432b9cf5c4ae1df806c172f3f44cb6 /bin/hilex/ansi.c | |
parent | Clean up C lexer (diff) | |
download | src-b2de730b6105964949df8bcf3937704108ba12b0.tar.gz src-b2de730b6105964949df8bcf3937704108ba12b0.zip |
Add make lexer
This is kind of a mess and needs to be cleaned up against more careful reading of the make grammar.
Diffstat (limited to 'bin/hilex/ansi.c')
-rw-r--r-- | bin/hilex/ansi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/hilex/ansi.c b/bin/hilex/ansi.c index 0d337523..cdfcc845 100644 --- a/bin/hilex/ansi.c +++ b/bin/hilex/ansi.c @@ -27,6 +27,7 @@ static const char *SGR[ClassCap] = { [Comment] = "34", [String] = "36", [StringFormat] = "36;1;96", + [Interpolation] = "33", }; static void ansiFormat(const char *opts[], enum Class class, const char *text) { |