From: Jarkko Hietaniemi Date: Mon, 21 Dec 1998 14:07:41 +0000 (+0000) Subject: Update on change #2493. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=df5b6949eb415c41b21186b830a00443d3a66c2d;p=p5sagit%2Fp5-mst-13.2.git Update on change #2493. p4raw-link: @2493 on //depot/cfgperl: 752ebe844985bd7c7f424795c73df4c551117eba p4raw-id: //depot/cfgperl@2496 --- diff --git a/t/pragma/warn/op b/t/pragma/warn/op index 195928c..f60a9fa 100644 --- a/t/pragma/warn/op +++ b/t/pragma/warn/op @@ -52,10 +52,10 @@ %$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' ;