Update on change #2493.
Jarkko Hietaniemi [Mon, 21 Dec 1998 14:07:41 +0000 (14:07 +0000)]
p4raw-link: @2493 on //depot/cfgperl: 752ebe844985bd7c7f424795c73df4c551117eba

p4raw-id: //depot/cfgperl@2496

t/pragma/warn/op

index 195928c..f60a9fa 100644 (file)
        %$c =~ tr/a/b/ ;
 
 
-     Parens missing around "my" list at -e line 1.
+     Parentheses missing around "my" list at -e line 1.
        my $a, $b = (1,2);
  
-     Parens missing around "local" list at -e line 1.
+     Parentheses missing around "local" list at -e line 1.
        local $a, $b = (1,2);
  
      Probable precedence problem on logical or at -e line 1.
@@ -436,13 +436,13 @@ Execution of - aborted due to compilation errors.
 use warning 'syntax' ;
 my $a, $b = (1,2);
 EXPECT
-Parens missing around "my" list at - line 3.
+Parentheses missing around "my" list at - line 3.
 ########
 # op.c
 use warning 'syntax' ;
 local $a, $b = (1,2);
 EXPECT
-Parens missing around "local" list at - line 3.
+Parentheses missing around "local" list at - line 3.
 ########
 # op.c
 use warning 'syntax' ;