diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | array.c | 2 | ||||
-rw-r--r-- | mpfr.c | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -6,6 +6,11 @@ * symbol.c (make_symbol): Set valref to 1. Allows the release_all_vars function to work. + Unrelated: + + * array.c (value_info): Spell ROUNDMODE correctly in output. + * mpfr.c (set_ROUNDMODE): Ditto. + 2020-08-12 Arnold D. Robbins <arnold@skeeve.com> * awkgram.c, command.c: Regenerated with Bison 3.7.1. @@ -709,7 +709,7 @@ value_info(NODE *n) n->stfmt == STFMT_UNUSED ? "<unused>" : fmt_list[n->stfmt]->stptr); #ifdef HAVE_MPFR - fprintf(output_fp, ", RNDMODE=\"%c\"", n->strndmode); + fprintf(output_fp, ", ROUNDMODE=\"%c\"", n->strndmode); #endif } @@ -618,7 +618,7 @@ set_ROUNDMODE() ROUND_MODE = rndm; MPFR_round_mode = n->stptr[0]; } else - warning(_("RNDMODE value `%.*s' is invalid"), (int) n->stlen, n->stptr); + warning(_("ROUNDMODE value `%.*s' is invalid"), (int) n->stlen, n->stptr); } } |