Commit a773f6c7 by Jan Brittenson

Add space before opening paren in function calls.

From-SVN: r5478
parent 9a63901f
......@@ -81,7 +81,7 @@ variations:
variation:
'(' opt_string ')'
{ $$ = makevar($2, (struct node *) NULL, (struct node *) NULL, (struct node *) NULL); }
{ $$ = makevar ($2, (struct node *) NULL, (struct node *) NULL, (struct node *) NULL); }
| '(' opt_string ',' list ')'
{ $$ = makevar ($2, $4, (struct node *) NULL, (struct node *) NULL); }
| '(' opt_string ',' list ',' list ')'
......@@ -164,6 +164,6 @@ void
yyerror (s)
char *s;
{
fprintf (stderr, "syntax error in input");
fprintf (stderr, "syntax error in input\n");
exit (1);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment