From 2ec8ef4406ca51f5431e17156e5c9baad528e7c7 Mon Sep 17 00:00:00 2001 From: "Wolfgang (Blub) Bumiller" Date: Sun, 25 Nov 2012 21:56:21 +0100 Subject: [PATCH] making goto a keyword --- lexer.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lexer.c b/lexer.c index 3660190..09a070d 100644 --- a/lexer.c +++ b/lexer.c @@ -47,7 +47,8 @@ static const char *keywords_fg[] = { "switch", "case", "default", "struct", "union", "break", "continue", - "typedef" + "typedef", + "goto" }; static size_t num_keywords_fg = sizeof(keywords_fg) / sizeof(keywords_fg[0]); -- 2.39.2