]> git.saurik.com Git - wxWidgets.git/commitdiff
removed shift/reduce conflict
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 19 Jan 2001 18:46:54 +0000 (18:46 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 19 Jan 2001 18:46:54 +0000 (18:46 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9130 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/parser.y

index 591c10c5513c28f21bfad922151db6c56f11644e..6cca59c6e772f35839164549036c324441d16fe0 100644 (file)
@@ -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; }
        ;