void yyerror (char const *msg);
%}
-%pure-parser %define push_pull "push"
+%define api.pure %define api.push_pull "push"
%%
int yylex (void);
%}
-%define push_pull "both"
+%define api.push_pull "both"
%%
AT_DATA([[input.y]],
[[%glr-parser
-%define push_pull "push"
+%define api.push_pull "push"
%%
start: ;
]])
AT_CHECK([[bison input.y]], [0], [],
-[[input.y:2.9-17: warning: %define variable `push_pull' is not used
+[[input.y:2.9-21: warning: %define variable `api.push_pull' is not used
]])
AT_CLEANUP