diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2020-07-28 20:47:34 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2020-07-28 20:47:34 +0300 |
commit | 9ef797b31c4d9200774ce8e6040c0eb009c58518 (patch) | |
tree | 9dec8c44731a3f1d54083c49994637df0e9b61fc /awkgram.c | |
parent | b11ce4a54d8ed198e734b3f8a86ed0d245bdd664 (diff) | |
parent | 7b10924a0f6cc443742af2f032ddbafea1c62e4e (diff) | |
download | egawk-9ef797b31c4d9200774ce8e6040c0eb009c58518.tar.gz egawk-9ef797b31c4d9200774ce8e6040c0eb009c58518.tar.bz2 egawk-9ef797b31c4d9200774ce8e6040c0eb009c58518.zip |
Merge branch 'gawk-5.1-stable'
Diffstat (limited to 'awkgram.c')
-rw-r--r-- | awkgram.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3059,7 +3059,7 @@ regular_loop: if (yyvsp[-1] != NULL) { NODE *n = yyvsp[-1]->nexti->nexti->memory; - if ((n->flags & (STRING|STRCUR)) != 0 || ! iszero(n)) + if ((n->flags & (STRING|STRCUR)) != 0 || ! is_zero(n)) goto regular_print; bcfree(yyvsp[-1]->lasti); /* Op_field_spec */ @@ -4901,7 +4901,7 @@ negate_num(NODE *n) #ifdef HAVE_MPFR if (is_mpg_integer(n)) { - if (! iszero(n)) { + if (! is_zero(n)) { mpz_neg(n->mpg_i, n->mpg_i); return; } |