summary refs log tree commit diff
path: root/bin/hilex/ansi.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-12-29 13:59:05 -0500
committerJune McEnroe <june@causal.agency>2020-12-29 13:59:05 -0500
commit017365813ce9fe3f7fb4ea3f1e2f9af72f2a1439 (patch)
tree67764aa50549f726e51c4d3940dbe62cbb458dca /bin/hilex/ansi.c
parentChange HTML class from hi to hilex (diff)
downloadsrc-017365813ce9fe3f7fb4ea3f1e2f9af72f2a1439.tar.gz
src-017365813ce9fe3f7fb4ea3f1e2f9af72f2a1439.zip
Rename Tag class to IdentifierTag
Diffstat (limited to 'bin/hilex/ansi.c')
-rw-r--r--bin/hilex/ansi.c12
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) {