From 146ae3bddd2caa965163ee179da3461366179442 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Mon, 27 Oct 2008 18:03:02 +0000 Subject: [PATCH] - further fixed r23189 [r23242] --- ast.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ast.c b/ast.c index b4efb68..8b4ebf4 100644 --- a/ast.c +++ b/ast.c @@ -73,9 +73,9 @@ void print_indent(void) static int right_to_left(unsigned precedence) { switch (precedence) { - case PREC_ASSIGNMENT: - case PREC_CONDITIONAL: - case PREC_UNARY: + case 2*PREC_ASSIGNMENT: + case 2*PREC_CONDITIONAL: + case 2*PREC_UNARY: return 1; default: -- 2.20.1