From b4e3633ac42ed7af21bce611234ccbf820098644 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Mon, 13 Feb 2012 09:15:08 +0200 Subject: [PATCH] Silence warning about deprecated assignment to $[ in check_keywords.pl Alex Hunsaker --- src/tools/check_keywords.pl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/tools/check_keywords.pl b/src/tools/check_keywords.pl index 3b68638614..1787754840 100755 --- a/src/tools/check_keywords.pl +++ b/src/tools/check_keywords.pl @@ -16,7 +16,6 @@ if (@ARGV) { $path = "."; } -$[ = 1; # set array base to 1 $, = ' '; # set output field separator $\ = "\n"; # set output record separator @@ -60,7 +59,7 @@ line: while () { $n = (@arr = split(' ', $S)); # Ok, we're in a keyword list. Go through each field in turn - for (my $fieldIndexer = 1; $fieldIndexer <= $n; $fieldIndexer++) { + for (my $fieldIndexer = 0; $fieldIndexer < $n; $fieldIndexer++) { if ($arr[$fieldIndexer] eq '*/' && $comment) { $comment = 0; next; -- 2.40.0