From 661bbacfc7c1381bee943d8a72387ed4f658a6f4 Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Tue, 26 Feb 2019 08:41:49 +0100 Subject: [PATCH] tests: style changes * tests/local.at AT_YYERROR_DEFINE(java): Use more consistent names. --- tests/local.at | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/local.at b/tests/local.at index 602bb577..58e35a9a 100644 --- a/tests/local.at +++ b/tests/local.at @@ -685,17 +685,17 @@ m4_define([AT_JAVA_POSITION_DEFINE], 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) - System.err.println (s); + System.err.println (m); 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); } ]]) ])