From 3c9b2db6e1d639eccb9e7b61fc83d00d0599c47a Mon Sep 17 00:00:00 2001 From: John Malmberg Date: Wed, 24 Jan 2018 08:13:07 -0600 Subject: Fix lintold.awk for VAX/VMS --- test/ChangeLog | 5 +++++ test/lintold.awk | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'test') diff --git a/test/ChangeLog b/test/ChangeLog index 04e7f121..875f2ded 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,8 @@ +2018-01-24 John E. Malmberg + + * 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 * Makefile.am (pty2): Instead of sed, use simpler awk goop diff --git a/test/lintold.awk b/test/lintold.awk index 698187a3..d312fc66 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" -- cgit v1.2.3 From 4d336c7a806479d99f8563a26690a7039a78a91d Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Thu, 25 Jan 2018 18:30:16 +0200 Subject: Fix formatting in test/ChangeLog. --- test/ChangeLog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/ChangeLog b/test/ChangeLog index 875f2ded..50258486 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,7 +1,7 @@ 2018-01-24 John E. Malmberg - * lintold.awk: Minor change to allow test to run on - 32 bit VAX/VMS with out a floating overflow. + * 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 -- cgit v1.2.3