From 52b9721027f1bf6722869a7f73e9bb68a08dbdbe Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Fri, 26 Oct 2012 19:06:10 +0900 Subject: [PATCH] Add the COMMA token to the pascal parser. I guess I forgot I needed to keep token numbers in sync between pascal and qc/ruamoko. --- tools/qfcc/source/qp-parse.y | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/qfcc/source/qp-parse.y b/tools/qfcc/source/qp-parse.y index 567c30d8e..14d9484b2 100644 --- a/tools/qfcc/source/qp-parse.y +++ b/tools/qfcc/source/qp-parse.y @@ -103,6 +103,7 @@ int yylex (void); %nonassoc CLASS_NOT_CATEGORY %nonassoc STORAGEX +%left COMMA %right '=' ASX PAS /* pointer assign */ %right '?' ':' %left OR