summaryrefslogtreecommitdiff
path: root/lex.h
diff options
context:
space:
mode:
authorÁkos Kőrösi <korakos99@gmail.com>2026-05-13 00:09:06 +0200
committerÁkos Kőrösi <korakos99@gmail.com>2026-05-13 00:09:06 +0200
commit98c18a13d25075e1bc876885bb95267ed9f2a1f8 (patch)
tree72a492999f4848f85a22aba4f1f30ab4cfa323fc /lex.h
parente097a4306efd2a45a531d2da09de634f80ba30f1 (diff)
outline state management; change maybe macro
Diffstat (limited to 'lex.h')
-rw-r--r--lex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lex.h b/lex.h
index 57c71bb..e5d843f 100644
--- a/lex.h
+++ b/lex.h
@@ -62,7 +62,7 @@ typedef struct {
DECLARE_VEC(Token, TokenVec)
-DECLARE_MAYBE(SpecialToken)
+DECLARE_MAYBE(SpecialToken, MaybeSpecialToken)
typedef enum {
CMDS,
@@ -74,7 +74,7 @@ struct Region {
TokenVec tokens;
};
-DECLARE_MAYBE(Chunk);
+DECLARE_MAYBE(Chunk, MaybeChunk);
DECLARE_VEC(Region, RegionVec)