From: Paul Eggert Date: Fri, 29 Nov 2002 08:45:14 +0000 (+0000) Subject: (Simple LALR Calculator): Adopt new convention for %parse-param X-Git-Tag: BISON-1_875~189 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=da90e18c6ecbc175724d1d8e6c683bd6cf7074ce;p=platform%2Fupstream%2Fbison.git (Simple LALR Calculator): Adopt new convention for %parse-param and %lex-param. --- diff --git a/tests/calc.at b/tests/calc.at index 63c3233..a0aa6fa 100644 --- a/tests/calc.at +++ b/tests/calc.at @@ -562,7 +562,7 @@ AT_CHECK_CALC_LALR([%error-verbose %debug %locations %defines %name-prefix="calc AT_CHECK_CALC_LALR([%pure-parser %error-verbose %debug %locations %defines %name-prefix="calc" %verbose %yacc]) -AT_CHECK_CALC_LALR([%pure-parser %error-verbose %debug %locations %defines %name-prefix="calc" %verbose %yacc %parse-param {value_t *result}, {result} %parse-param {int *count}, {count}]) +AT_CHECK_CALC_LALR([%pure-parser %error-verbose %debug %locations %defines %name-prefix="calc" %verbose %yacc %parse-param {value_t *result} %parse-param {int *count}]) # ----------------------- # @@ -597,4 +597,4 @@ AT_CHECK_CALC_GLR([%error-verbose %debug %locations %defines %name-prefix="calc" AT_CHECK_CALC_GLR([%pure-parser %error-verbose %debug %locations %defines %name-prefix="calc" %verbose %yacc]) -AT_CHECK_CALC_GLR([%pure-parser %error-verbose %debug %locations %defines %name-prefix="calc" %verbose %yacc %parse-param {value_t *result}, {result} %parse-param {int *count}, {count}]) +AT_CHECK_CALC_GLR([%pure-parser %error-verbose %debug %locations %defines %name-prefix="calc" %verbose %yacc %parse-param {value_t *result} %parse-param {int *count}])