[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[SCM] gawk branch, gawk-5.3-stable, updated. gawk-4.1.0-5506-gab39d4e1
From: |
John Malmberg |
Subject: |
[SCM] gawk branch, gawk-5.3-stable, updated. gawk-4.1.0-5506-gab39d4e1 |
Date: |
Sun, 11 Aug 2024 14:12:33 -0400 (EDT) |
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, gawk-5.3-stable has been updated
via ab39d4e1002edc4a0f4633f7ed6ae0341f671af9 (commit)
from 11280faaf5a99173ce6318fe7a455e3a31e6a95f (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=ab39d4e1002edc4a0f4633f7ed6ae0341f671af9
commit ab39d4e1002edc4a0f4633f7ed6ae0341f671af9
Author: John Malmberg <wb8tyw@qsl.net>
Date: Sun Aug 11 13:12:32 2024 -0500
Improved fix for printf.c for OpenVMS
diff --git a/ChangeLog b/ChangeLog
index 82d977fa..f7d55a13 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2024-08-11 John E. Malmberg <wb8tyw@qsl.net>
+ * printf.c (format_mpg_integer_digits) improved fix
+ from Arnold for if !HAVE_MPFR
+
2024-08-11 John E. Malmberg <wb8tyw@qsl.net>
* printf.c (format_float) fix cant_format macro call
diff --git a/printf.c b/printf.c
index f24db4c6..be03507a 100644
--- a/printf.c
+++ b/printf.c
@@ -1327,8 +1327,9 @@ fmt0:
return buf;
#else
+ static char empty[] = "";
cant_happen("%s", "trying to format GMP integer");
- return NULL;
+ return empty;
#endif
}
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 4 ++++
printf.c | 3 ++-
2 files changed, 6 insertions(+), 1 deletion(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [SCM] gawk branch, gawk-5.3-stable, updated. gawk-4.1.0-5506-gab39d4e1,
John Malmberg <=