From a8629a4f9af00f0a1a80e731af916e76e7bb1b5b Mon Sep 17 00:00:00 2001 From: Ian Flanigan Date: Sun, 25 Nov 2018 17:04:21 +0100 Subject: [PATCH] Remove duplicate token declaration from lex.c Before this change, there were two declarations for the 'res' token. Now there is only one. --- src/toolsrc/lex.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/toolsrc/lex.c b/src/toolsrc/lex.c index 5544a3d..555b256 100755 --- a/src/toolsrc/lex.c +++ b/src/toolsrc/lex.c @@ -50,7 +50,6 @@ t_token keywords[] = { BYTE_TOKEN, 'R', 'E', 'S', BYTE_TOKEN, 'B', 'Y', 'T', 'E', BYTE_TOKEN, 'C', 'H', 'A', 'R', - BYTE_TOKEN, 'R', 'E', 'S', WORD_TOKEN, 'W', 'O', 'R', 'D', WORD_TOKEN, 'V', 'A', 'R', CONST_TOKEN, 'C', 'O', 'N', 'S', 'T',