Diff for /embedaddon/php/Zend/zend_language_parser.y between versions 1.1.1.3 and 1.1.1.4

version 1.1.1.3, 2013/07/22 01:32:16 version 1.1.1.4, 2013/10/14 08:02:49
Line 41  static YYSIZE_T zend_yytnamerr(char*, const char*); Line 41  static YYSIZE_T zend_yytnamerr(char*, const char*);
   
 #define YYERROR_VERBOSE  #define YYERROR_VERBOSE
 #define YYSTYPE znode  #define YYSTYPE znode
 #ifdef ZTS  
 # define YYPARSE_PARAM tsrm_ls  
 # define YYLEX_PARAM tsrm_ls  
 #endif  
   
   
 %}  %}
   
 %pure_parser  %pure_parser
 %expect 3  %expect 3
   
   %code requires {
   #ifdef ZTS
   # define YYPARSE_PARAM tsrm_ls
   # define YYLEX_PARAM tsrm_ls
   #endif
   }
   
 %token END 0 "end of file"  %token END 0 "end of file"
 %left T_INCLUDE T_INCLUDE_ONCE T_EVAL T_REQUIRE T_REQUIRE_ONCE  %left T_INCLUDE T_INCLUDE_ONCE T_EVAL T_REQUIRE T_REQUIRE_ONCE

Removed from v.1.1.1.3  
changed lines
  Added in v.1.1.1.4


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>