mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-18 16:53:02 +00:00
tests: style changes
* tests/local.at AT_YYERROR_DEFINE(java): Use more consistent names.
This commit is contained in:
@@ -685,17 +685,17 @@ m4_define([AT_JAVA_POSITION_DEFINE],
|
|||||||
|
|
||||||
|
|
||||||
m4_define([AT_YYERROR_DEFINE(java)],
|
m4_define([AT_YYERROR_DEFINE(java)],
|
||||||
[AT_LOCATION_IF([[public void yyerror (Calc.Location l, String s)
|
[AT_LOCATION_IF([[public void yyerror (Calc.Location l, String m)
|
||||||
{
|
{
|
||||||
if (l == null)
|
if (l == null)
|
||||||
System.err.println (s);
|
System.err.println (m);
|
||||||
else
|
else
|
||||||
System.err.println (l + ": " + s);
|
System.err.println (l + ": " + m);
|
||||||
}
|
}
|
||||||
]], [[
|
]], [[
|
||||||
public void yyerror (String s)
|
public void yyerror (String m)
|
||||||
{
|
{
|
||||||
System.err.println (s);
|
System.err.println (m);
|
||||||
}
|
}
|
||||||
]])
|
]])
|
||||||
])
|
])
|
||||||
|
|||||||
Reference in New Issue
Block a user