From bf62af352e4573b5307be6ff8997c58a376a1959 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 19 Jan 2001 18:46:54 +0000 Subject: [PATCH] removed shift/reduce conflict git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9130 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/parser.y | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/common/parser.y b/src/common/parser.y index 591c10c551..6cca59c6e7 100644 --- a/src/common/parser.y +++ b/src/common/parser.y @@ -78,8 +78,6 @@ command : WORD PERIOD expr : WORD OPEN arglist CLOSE {$$ = proio_cons(wxmake_word($1), $3); free($1);} - | OPEN_SQUARE CLOSE_SQUARE - {$$ = proio_cons(NULL, NULL);} | OPEN_SQUARE arglist CLOSE_SQUARE {$$ = $2; } ; -- 2.45.2