aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJan Brittenson <bson@gnu.org>1993-09-26 13:59:41 -0700
committerJan Brittenson <bson@gnu.org>1993-09-26 13:59:41 -0700
commita773f6c7e6e74a1fac033016550dbbcba0ad8133 (patch)
tree7c21b51dc8324702b37751b48b32a2d9feae9656 /gcc
parent9a63901fb7b59ae76134fc07126b56f32f014f91 (diff)
downloadgcc-a773f6c7e6e74a1fac033016550dbbcba0ad8133.zip
gcc-a773f6c7e6e74a1fac033016550dbbcba0ad8133.tar.gz
gcc-a773f6c7e6e74a1fac033016550dbbcba0ad8133.tar.bz2
Add space before opening paren in function calls.
From-SVN: r5478
Diffstat (limited to 'gcc')
-rw-r--r--gcc/bi-parser.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/bi-parser.y b/gcc/bi-parser.y
index c855d84..df49062 100644
--- a/gcc/bi-parser.y
+++ b/gcc/bi-parser.y
@@ -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);
}