[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[SCM] gawk branch, gawk-5.3-stable, updated. gawk-4.1.0-5484-g27b48b48
From: |
Arnold Robbins |
Subject: |
[SCM] gawk branch, gawk-5.3-stable, updated. gawk-4.1.0-5484-g27b48b48 |
Date: |
Sun, 16 Jun 2024 13:15:02 -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 27b48b4866bafa8337daa8b00fae3b41061c02cd (commit)
from 2b6c756e7ff354694a0e30f4bfc921dade43d40a (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=27b48b4866bafa8337daa8b00fae3b41061c02cd
commit 27b48b4866bafa8337daa8b00fae3b41061c02cd
Author: Arnold D. Robbins <arnold@skeeve.com>
Date: Sun Jun 16 20:14:29 2024 +0300
Bug fix for MPFR mode, when dealing with Node_elem_new.
diff --git a/ChangeLog b/ChangeLog
index d43486fe..dc327090 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2024-06-16 Arnold D. Robbins <arnold@skeeve.com>
+
+ * interpret.h (r_interpret): Op_push: When converting a
+ Node_elem_new into a Node_var, clear the MPFN and MPZN flags.
+ Allows the test suite to run again with -M.
+
2024-06-10 Arnold D. Robbins <arnold@skeeve.com>
* main.c (nostalgia): Remved function.
diff --git a/interpret.h b/interpret.h
index 4c723ae0..94aaaaf7 100644
--- a/interpret.h
+++ b/interpret.h
@@ -222,6 +222,7 @@ uninitialized_scalar:
// convert very original untyped to
scalar
m->type = Node_var;
m->var_value = dupnode(Nnull_string);
+ m->flags &= ~(MPFN | MPZN);
// set up local param by value
m = dupnode(Nnull_string);
@@ -242,6 +243,7 @@ uninitialized_scalar:
// convert very original untyped to
scalar
m->type = Node_var;
m->var_value = dupnode(Nnull_string);
+ m->flags &= ~(MPFN | MPZN);
// set up local param by value
DEREF(m);
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 6 ++++++
interpret.h | 2 ++
2 files changed, 8 insertions(+)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [SCM] gawk branch, gawk-5.3-stable, updated. gawk-4.1.0-5484-g27b48b48,
Arnold Robbins <=