aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/token.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/token.c')
-rw-r--r--src/token.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/token.c b/src/token.c
index 7e54729..ebb803e 100644
--- a/src/token.c
+++ b/src/token.c
@@ -13,6 +13,8 @@ const char* token_kind_stringify(TokenKind k) {
return "<whitespace>";
else if (k == TokenKind_removed)
return "<removed>";
+ else if (k == TokenKind_placemarker)
+ return "<placemarker>";
else if (k == TokenKind_newline)
return "<new-line>";
else if (k == TokenKind_other)