From 1f4ccb92826abbdc41da29d4dff3dfedc7191c22 Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Sun, 28 Aug 2011 19:53:11 +0400 Subject: [PATCH] parser: No need to split line if it a bit longer than 80 chars Signed-off-by: Cyrill Gorcunov --- parser.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/parser.c b/parser.c index 5ca9f860..e8794ac2 100644 --- a/parser.c +++ b/parser.c @@ -273,8 +273,7 @@ restart_parse: expr *value; i = stdscan(NULL, &tokval); - value = - evaluate(stdscan, NULL, &tokval, NULL, pass0, nasm_error, NULL); + value = evaluate(stdscan, NULL, &tokval, NULL, pass0, nasm_error, NULL); i = tokval.t_type; if (!value) { /* but, error in evaluator */ result->opcode = I_none; /* unrecoverable parse error: */ -- 2.11.4.GIT