From 25264bd774c381a8ed7ad0a91fea228c4a3638b5 Mon Sep 17 00:00:00 2001 From: belliash Date: Thu, 12 Jul 2018 16:15:58 +0200 Subject: [PATCH] extension in PH7, but standard in P# --- parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parse.c b/parse.c index 775c557..35eadf1 100644 --- a/parse.c +++ b/parse.c @@ -246,7 +246,7 @@ static const ph7_expr_op aOpTable[] = { /* Precedence 22,left-associative */ { {"or",sizeof("or")-1}, EXPR_OP_LOR, 22, EXPR_OP_ASSOC_LEFT, PH7_OP_LOR}, /* Precedence 23,left-associative [Lowest operator] */ - { {",",sizeof(char)}, EXPR_OP_COMMA,23, EXPR_OP_ASSOC_LEFT, 0}, /* IMP-0139-COMMA: Symisc eXtension */ + { {",",sizeof(char)}, EXPR_OP_COMMA,23, EXPR_OP_ASSOC_LEFT, 0}, }; /* Function call operator need special handling */ static const ph7_expr_op sFCallOp = {{"(",sizeof(char)}, EXPR_OP_FUNC_CALL, 2, EXPR_OP_ASSOC_LEFT , PH7_OP_CALL};