[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-289
From: |
John Malmberg |
Subject: |
[gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-2896-g3c9b2db |
Date: |
Wed, 24 Jan 2018 09:17:52 -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, gawk-4.2-stable has been updated
via 3c9b2db6e1d639eccb9e7b61fc83d00d0599c47a (commit)
from 5dc349424b717a55c310f48671e4d15a757765e9 (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=3c9b2db6e1d639eccb9e7b61fc83d00d0599c47a
commit 3c9b2db6e1d639eccb9e7b61fc83d00d0599c47a
Author: John Malmberg <address@hidden>
Date: Wed Jan 24 08:13:07 2018 -0600
Fix lintold.awk for VAX/VMS
diff --git a/test/ChangeLog b/test/ChangeLog
index 04e7f12..875f2de 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,8 @@
+2018-01-24 John E. Malmberg <address@hidden>
+
+ * lintold.awk: Minor change to allow test to run on
+ 32 bit VAX/VMS with out a floating overflow.
+
2018-01-18 Arnold D. Robbins <address@hidden>
* Makefile.am (pty2): Instead of sed, use simpler awk goop
diff --git a/test/lintold.awk b/test/lintold.awk
index 698187a..d312fc6 100644
--- a/test/lintold.awk
+++ b/test/lintold.awk
@@ -8,7 +8,7 @@ BEGIN {
if (2 in a)
a[2] **= 2;
if ((2,3) in a)
- a[2,3] ^= 2 ** 3 ^ 5;
+ a[2,3] ^= 2 ** 3 ^ 4;
}
BEGIN {
FS = "ab"
-----------------------------------------------------------------------
Summary of changes:
test/ChangeLog | 5 +++++
test/lintold.awk | 2 +-
2 files changed, 6 insertions(+), 1 deletion(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-2896-g3c9b2db,
John Malmberg <=