renamed ch7xxx to ch3xxx

This commit is contained in:
eck
1989-10-23 13:00:35 +00:00
parent 49d31eaeff
commit 741b43044d
4 changed files with 12 additions and 12 deletions

View File

@@ -32,7 +32,7 @@ unary(arith *pval;)
:
unop(&oper)
unary(pval)
{ ch7mon(oper, pval); }
{ ch3mon(oper, pval); }
|
primary(pval)
;
@@ -45,7 +45,7 @@ binary_expression(int maxrank; arith *pval;)
binop(&oper)
binary_expression(rank_of(oper)-1, &val1)
{
ch7bin(pval, oper, val1);
ch3bin(pval, oper, val1);
}
]*
;
@@ -78,7 +78,7 @@ expression(arith *pval;)
[ ','
assignment_expression(&val1)
{
ch7bin(pval, ',', val1);
ch3bin(pval, ',', val1);
}
]*
;