diff options
author | June McEnroe <june@causal.agency> | 2020-12-29 13:59:05 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-12-29 13:59:05 -0500 |
commit | 017365813ce9fe3f7fb4ea3f1e2f9af72f2a1439 (patch) | |
tree | 67764aa50549f726e51c4d3940dbe62cbb458dca /bin/hilex/ansi.c | |
parent | Change HTML class from hi to hilex (diff) | |
download | src-017365813ce9fe3f7fb4ea3f1e2f9af72f2a1439.tar.gz src-017365813ce9fe3f7fb4ea3f1e2f9af72f2a1439.zip |
Rename Tag class to IdentifierTag
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) { |