From: Paul Eggert Date: Tue, 25 Feb 2003 07:57:09 +0000 (+0000) Subject: (yy::]b4_parser_class_name[::parse): yylineno -> yylno. X-Git-Tag: BISON-2_0~382 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/9b76b7868e99f0db87d771de176240efc8005edd (yy::]b4_parser_class_name[::parse): yylineno -> yylno. --- diff --git a/data/lalr1.cc b/data/lalr1.cc index 2ef527b6..1d1b9cff 100644 --- a/data/lalr1.cc +++ b/data/lalr1.cc @@ -432,9 +432,9 @@ yy::]b4_parser_class_name[::parse () // Short files will use "unsigned char" for line numbers, // in which case they will be output as character litterals // by "<<". - unsigned yylineno = rline_[n_]; + unsigned yylno = rline_[n_]; YYCDEBUG << "Reducing via rule " << n_ - 1 - << " (line " << yylineno << "), "; + << " (line " << yylno << "), "; for (]b4_int_type_for([b4_prhs])[ i = prhs_[n_]; 0 <= rhs_[i]; ++i) YYCDEBUG << name_[rhs_[i]] << ' ';