aboutsummaryrefslogtreecommitdiffstats
path: root/mpfr.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2018-07-13 13:59:40 +0300
committerArnold D. Robbins <arnold@skeeve.com>2018-07-13 13:59:40 +0300
commitc8bcf55be11e29d5df00013d2a267ce0ca2ba4c6 (patch)
tree1b0021d8c9ff8bacf94249e7016496cb9a5173e9 /mpfr.c
parentd5d9470814e516fd04dd5a0122e8e4e702c767d9 (diff)
parent52e6f76e7c0199cf5ae64e4b23698884cc245912 (diff)
downloadegawk-c8bcf55be11e29d5df00013d2a267ce0ca2ba4c6.tar.gz
egawk-c8bcf55be11e29d5df00013d2a267ce0ca2ba4c6.tar.bz2
egawk-c8bcf55be11e29d5df00013d2a267ce0ca2ba4c6.zip
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'mpfr.c')
-rw-r--r--mpfr.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/mpfr.c b/mpfr.c
index 0c962c67..b6e9c16e 100644
--- a/mpfr.c
+++ b/mpfr.c
@@ -357,6 +357,11 @@ mpg_format_val(const char *format, int index, NODE *s)
NODE *dummy[2], *r;
unsigned int oflags;
+ if (out_of_range(s)) {
+ const char *result = format_nan_inf(s, 'g');
+ return make_string(result, strlen(result));
+ }
+
/* create dummy node for a sole use of format_tree */
dummy[1] = s;
oflags = s->flags;