summary refs log tree commit diff
path: root/bin/hilex.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-01-13 16:42:30 -0500
committerJune McEnroe <june@causal.agency>2021-01-13 16:42:30 -0500
commitf65d18f4f06e08cd2caa7743d2220e07f794cd79 (patch)
tree704709bb72b7234f0e0cc5f7653e6747baaf350a /bin/hilex.h
parentMove text "lexer" to hilex.c (diff)
downloadsrc-f65d18f4f06e08cd2caa7743d2220e07f794cd79.tar.gz
src-f65d18f4f06e08cd2caa7743d2220e07f794cd79.zip
Shorten hilex class names
Diffstat (limited to 'bin/hilex.h')
-rw-r--r--bin/hilex.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/hilex.h b/bin/hilex.h
index fc969e5f..b6c3c724 100644
--- a/bin/hilex.h
+++ b/bin/hilex.h
@@ -22,13 +22,13 @@
 	X(Operator) \
 	X(Number) \
 	X(Keyword) \
-	X(Identifier) \
+	X(Ident) \
 	X(Macro) \
 	X(Comment) \
 	X(String) \
-	X(StringEscape) \
-	X(StringFormat) \
-	X(Interpolation)
+	X(Escape) \
+	X(Format) \
+	X(Subst)
 
 enum Class {
 #define X(class) class,