From 4ff6a740822319a9d99752167659ee334b48dfc5 Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Fri, 12 Sep 2008 10:25:33 +0000 Subject: [PATCH] Print a " " after the ")" of for-statements. [r21892] --- ast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ast.c b/ast.c index b970f70..f20956e 100644 --- a/ast.c +++ b/ast.c @@ -1035,7 +1035,7 @@ static void print_for_statement(const for_statement_t *statement) if(statement->step != NULL) { print_expression(statement->step); } - fputs(")", out); + fputs(") ", out); print_statement(statement->body); } -- 2.20.1