diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-01-03 22:28:39 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-01-03 22:28:39 +0200 |
commit | a5f04737b4a5fce89ab7bd9264ba5b4813473121 (patch) | |
tree | 1fdc4b049f5eab73b15af306069a52eac110934b /awkgram.c | |
parent | c182937de92dc028a12a6c9350773dced1841751 (diff) | |
download | egawk-a5f04737b4a5fce89ab7bd9264ba5b4813473121.tar.gz egawk-a5f04737b4a5fce89ab7bd9264ba5b4813473121.tar.bz2 egawk-a5f04737b4a5fce89ab7bd9264ba5b4813473121.zip |
Changes to ROUNDMODE now invalidate cached string values.
Diffstat (limited to 'awkgram.c')
-rw-r--r-- | awkgram.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -8771,6 +8771,9 @@ set_profile_text(NODE *n, const char *str, size_t len) // Thanks and a tip of the hatlo to valgrind. n->flags |= (NUMCONSTSTR|STRCUR); n->stfmt = STFMT_UNUSED; +#ifdef HAVE_MPFR + n->strndmode = MPFR_round_mode; +#endif } return n; |