Commit a773f6c7 by Jan Brittenson

Add space before opening paren in function calls.

From-SVN: r5478
parent 9a63901f
...@@ -81,7 +81,7 @@ variations: ...@@ -81,7 +81,7 @@ variations:
variation: variation:
'(' opt_string ')' '(' 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 ')' | '(' opt_string ',' list ')'
{ $$ = makevar ($2, $4, (struct node *) NULL, (struct node *) NULL); } { $$ = makevar ($2, $4, (struct node *) NULL, (struct node *) NULL); }
| '(' opt_string ',' list ',' list ')' | '(' opt_string ',' list ',' list ')'
...@@ -164,6 +164,6 @@ void ...@@ -164,6 +164,6 @@ void
yyerror (s) yyerror (s)
char *s; char *s;
{ {
fprintf (stderr, "syntax error in input"); fprintf (stderr, "syntax error in input\n");
exit (1); 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