[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[SCM] gawk branch, feature/readall, updated. gawk-4.1.0-4607-gdc46f55
From: |
Andrew J. Schorr |
Subject: |
[SCM] gawk branch, feature/readall, updated. gawk-4.1.0-4607-gdc46f55 |
Date: |
Fri, 10 Dec 2021 07:57:37 -0500 (EST) |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".
The branch, feature/readall has been updated
via dc46f5556b5ce7ddebed876c0f40d8b5432e94bb (commit)
from 4d85efd9d7e125b64df9a1fb3cf8ee695fd42fd3 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=dc46f5556b5ce7ddebed876c0f40d8b5432e94bb
commit dc46f5556b5ce7ddebed876c0f40d8b5432e94bb
Author: Andrew J. Schorr <aschorr@telemetry-investments.com>
Date: Fri Dec 10 07:57:17 2021 -0500
Fix comment in rwarray about rounding mode.
diff --git a/extension/ChangeLog b/extension/ChangeLog
index 8872ec7..ca92b2a 100644
--- a/extension/ChangeLog
+++ b/extension/ChangeLog
@@ -1,3 +1,8 @@
+2021-12-10 Andrew J. Schorr <aschorr@telemetry-investments.com>
+
+ *rwarray.c (write_number): Update comment to reflect that we are
+ now using mpfr_get_default_rounding_mode() instead of MPFR_RNDN.
+
2021-12-10 Arnold D. Robbins <arnold@skeeve.com>
* rwarray.c (write_number, read_number): Reformat comments a bit.
diff --git a/extension/rwarray.c b/extension/rwarray.c
index af6f1cd..54032e5 100644
--- a/extension/rwarray.c
+++ b/extension/rwarray.c
@@ -373,7 +373,7 @@ write_number(FILE *fp, awk_value_t *val)
#define MPFR_STR_BASE 62 /* maximize base to minimize string len */
#define MPFR_STR_ROUND mpfr_get_default_rounding_mode()
/*
- * XXX does the choice of MPFR_RNDN matter, given
+ * Does the choice of rounding mode matter, given
* that the precision is 0, so we should be rendering
* in full precision?
*/
-----------------------------------------------------------------------
Summary of changes:
extension/ChangeLog | 5 +++++
extension/rwarray.c | 2 +-
2 files changed, 6 insertions(+), 1 deletion(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [SCM] gawk branch, feature/readall, updated. gawk-4.1.0-4607-gdc46f55,
Andrew J. Schorr <=