diff options
Diffstat (limited to '')
-rw-r--r-- | bin/hilex/ansi.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/hilex/ansi.c b/bin/hilex/ansi.c index fa88fd37..0d337523 100644 --- a/bin/hilex/ansi.c +++ b/bin/hilex/ansi.c @@ -21,12 +21,12 @@ #include "hilex.h" static const char *SGR[ClassCap] = { - [Keyword] = "37", - [Tag] = "4", - [Macro] = "32", - [Comment] = "34", - [String] = "36", - [StringFormat] = "36;1;96", + [Keyword] = "37", + [IdentifierTag] = "4", + [Macro] = "32", + [Comment] = "34", + [String] = "36", + [StringFormat] = "36;1;96", }; static void ansiFormat(const char *opts[], enum Class class, const char *text) { |