diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2011-08-28 19:53:11 +0400 |
---|---|---|
committer | Cyrill Gorcunov <gorcunov@gmail.com> | 2011-08-28 19:53:11 +0400 |
commit | 1f4ccb92826abbdc41da29d4dff3dfedc7191c22 (patch) | |
tree | 1be4c005c5b420350ec67a76d5fa32f7e75fee57 /parser.c | |
parent | 5abbe375cfc44a539347c8b409b443aa47be7cdf (diff) | |
download | nasm-1f4ccb92826abbdc41da29d4dff3dfedc7191c22.tar.gz nasm-1f4ccb92826abbdc41da29d4dff3dfedc7191c22.tar.bz2 nasm-1f4ccb92826abbdc41da29d4dff3dfedc7191c22.zip |
parser: No need to split line if it a bit longer than 80 chars
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'parser.c')
-rw-r--r-- | parser.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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: */ |