Change 30690 by [EMAIL PROTECTED] on 2007/03/22 15:57:52

        Make opcode.pl strict clean. (threadsv, a 5005-threads specific term,
        was a bareword.)

Affected files ...

... //depot/maint-5.8/perl/opcode.pl#34 edit

Differences ...

==== //depot/maint-5.8/perl/opcode.pl#34 (xtext) ====
Index: perl/opcode.pl
--- perl/opcode.pl#33~30272~    2007-02-13 15:24:02.000000000 -0800
+++ perl/opcode.pl      2007-03-22 08:57:52.000000000 -0700
@@ -230,7 +230,7 @@
 
 for (@ops) {
     $_ eq "custom" and next;
-    if ($_ eq threadsv) {
+    if ($_ eq 'threadsv') {
        # Big threadsv special case
        my $name = $alias{$_};
        print <<"EOT";
End of Patch.

Reply via email to