summaryrefslogtreecommitdiffhomepage
path: root/lexer.h
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2021-07-09 19:40:59 +0200
committerJo-Philipp Wich <jo@mein.io>2021-07-09 19:41:42 +0200
commit62dbd6470e2e1b049ba18669d21f91d60063e347 (patch)
tree1d9ed2faf7c9856e4328858a6a22a842efeff3ce /lexer.h
parentbc8e465eed602d1981986145ebdacda1532053ff (diff)
lexer: rename UT_ prefixed constants to UC_
This is a cosmetic change to bring the code in line with the common prefix format of the other code in the tree. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'lexer.h')
-rw-r--r--lexer.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/lexer.h b/lexer.h
index e1a30ed..694c056 100644
--- a/lexer.h
+++ b/lexer.h
@@ -112,15 +112,15 @@ typedef enum {
} uc_tokentype_t;
typedef enum {
- UT_LEX_IDENTIFY_BLOCK,
- UT_LEX_BLOCK_COMMENT_START,
- UT_LEX_BLOCK_EXPRESSION_START,
- UT_LEX_BLOCK_EXPRESSION_EMIT_TAG,
- UT_LEX_BLOCK_STATEMENT_START,
- UT_LEX_BLOCK_COMMENT,
- UT_LEX_IDENTIFY_TOKEN,
- UT_LEX_PARSE_TOKEN,
- UT_LEX_EOF
+ UC_LEX_IDENTIFY_BLOCK,
+ UC_LEX_BLOCK_COMMENT_START,
+ UC_LEX_BLOCK_EXPRESSION_START,
+ UC_LEX_BLOCK_EXPRESSION_EMIT_TAG,
+ UC_LEX_BLOCK_STATEMENT_START,
+ UC_LEX_BLOCK_COMMENT,
+ UC_LEX_IDENTIFY_TOKEN,
+ UC_LEX_PARSE_TOKEN,
+ UC_LEX_EOF
} uc_lex_state_t;
typedef struct {