diff options
author | June McEnroe <june@causal.agency> | 2021-01-13 16:42:30 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-01-13 16:42:30 -0500 |
commit | b10e81ef8fbc7e644dd72c2ee94b9e09eeac62f8 (patch) | |
tree | 1b9d9471153d49dc500cd9b7f1e6d50cfb505ec0 /bin/hilex.h | |
parent | Move text "lexer" to hilex.c (diff) | |
download | src-b10e81ef8fbc7e644dd72c2ee94b9e09eeac62f8.tar.gz src-b10e81ef8fbc7e644dd72c2ee94b9e09eeac62f8.zip |
Shorten hilex class names
Diffstat (limited to '')
-rw-r--r-- | bin/hilex.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/hilex.h b/bin/hilex.h index 2a8d4ec0..2c080e20 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, |