GNU bug report logs - #61671
[PATCH] Remove parentheses around test argument lists

Previous Next

Package: automake-patches;

Reported by: Jacob Bachmeyer <jcb <at> gnu.org>

Date: Tue, 21 Feb 2023 05:42:04 UTC

Severity: normal

Tags: patch

Done: Paul Eggert <eggert <at> cs.ucla.edu>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Jacob Bachmeyer <jcb <at> gnu.org>
Subject: bug#61671: closed (Remove parentheses around test argument lists)
Date: Wed, 29 Mar 2023 19:56:03 +0000
[Message part 1 (text/plain, inline)]
Your bug report

#61671: [PATCH] Remove parentheses around test argument lists

which was filed against the automake-patches package, has been closed.

The explanation is attached below, along with your original report.
If you require more details, please reply to 61671 <at> debbugs.gnu.org.

-- 
61671: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=61671
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Paul Eggert <eggert <at> cs.ucla.edu>
To: Jacob Bachmeyer <jcb62281 <at> gmail.com>
Cc: 61671-done <at> debbugs.gnu.org
Subject: Remove parentheses around test argument lists
Date: Wed, 29 Mar 2023 12:55:32 -0700
Thanks, I installed that patch into Automake.

[Message part 3 (message/rfc822, inline)]
From: Jacob Bachmeyer <jcb <at> gnu.org>
To: automake-patches <at> gnu.org
Subject: [PATCH] Remove parentheses around test argument lists
Date: Wed, 8 Feb 2023 23:30:00 -0600
This works around a parser bug in Perl 5.6.2.

	* t/pm/General.pl: Remove parentheses on argument lists.
---
 t/pm/General.pl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/t/pm/General.pl b/t/pm/General.pl
index bb99fce83..fafedbc46 100644
--- a/t/pm/General.pl
+++ b/t/pm/General.pl
@@ -18,10 +18,10 @@ use Automake::General;
 my $failed = 0;
 
 # Check 'none'.
-my $none_positive = none { $_[0] < 0 } (1, 7, 3, 8, 9);
+my $none_positive = none { $_[0] < 0 } 1, 7, 3, 8, 9;
 $failed = 1 if ($none_positive == 0);
 
-my $none_gt_8 = none { $_[0] >= 8 } (1, 7, 3, 8, 9);
+my $none_gt_8 = none { $_[0] >= 8 } 1, 7, 3, 8, 9;
 $failed = 1 if ($none_gt_8 == 1);
 
 exit $failed;
-- 
2.17.1




This bug report was last modified 2 years and 109 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.