This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix up change 31494
authorJerry D. Hedden <jdhedden@cpan.org>
Fri, 29 Jun 2007 12:02:17 +0000 (08:02 -0400)
committerSteve Peters <steve@fisharerojo.org>
Fri, 29 Jun 2007 16:10:13 +0000 (16:10 +0000)
From: "Jerry D. Hedden" <jdhedden@cpan.org>
Message-ID: <1ff86f510706290902k57b540a5n446fad22c1afdab0@mail.gmail.com>

p4raw-id: //depot/perl@31504

t/op/goto.t

index 9f98490..9254d7c 100755 (executable)
@@ -449,8 +449,7 @@ like($@, qr/Can't goto subroutine from an eval-block/, 'eval block');
 }
 
 TODO: {
-    local $TODO = "[perl #43403] goto() from an if to an else doesn't undo local
-() changes";
+    local $TODO = "[perl #43403] goto() from an if to an else doesn't undo local () changes";
     our $global = "unmodified";
     if ($global) { # true but not constant-folded
          local $global = "modified";