From: Wolfgang (Blub) Bumiller Date: Sun, 25 Nov 2012 20:56:21 +0000 (+0100) Subject: making goto a keyword X-Git-Tag: 0.1.9~232 X-Git-Url: http://de.git.xonotic.org/?a=commitdiff_plain;h=2ec8ef4406ca51f5431e17156e5c9baad528e7c7;p=xonotic%2Fgmqcc.git making goto a keyword --- 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]);