diff options
author | Derick Rethans <derick@php.net> | 2004-04-02 21:26:35 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2004-04-02 21:26:35 +0000 |
commit | 95659890bae85f805bba7d60f173e375dd72a5dc (patch) | |
tree | 4fb2faeec239cd54bd10fadcee65c055f0e11a8f | |
parent | 60baea967160510d1d89fb7ee03daad7f7bb18db (diff) | |
download | php-git-95659890bae85f805bba7d60f173e375dd72a5dc.tar.gz |
- Fixed expected shift/reduce conflict count nu,ber
-rw-r--r-- | ext/standard/parsedate.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/parsedate.y b/ext/standard/parsedate.y index eec2f323b6..7e806b5f97 100644 --- a/ext/standard/parsedate.y +++ b/ext/standard/parsedate.y @@ -151,8 +151,8 @@ typedef union _date_ll { static int yylex (YYSTYPE *lvalp, void *parm); %} -/* This grammar has 24 shift/reduce conflicts. */ -%expect 36 +/* This grammar has 56 shift/reduce conflicts. */ +%expect 56 %pure_parser %token tAGO tDAY tDAY_UNIT tDAYZONE tDST tHOUR_UNIT tID tTZONE tWZONE tZZONE |