small thinko tweaks
Jarkko Hietaniemi [Wed, 28 Jun 2000 15:33:45 +0000 (15:33 +0000)]
p4raw-id: //depot/cfgperl@6255

lib/IPC/Open3.pm
t/op/my_stash.t

index 5078a9a..5c9c69a 100644 (file)
@@ -145,9 +145,8 @@ sub fh_is_fd {
 }
 
 sub xfileno {
-    my ($fh) = @_;
-    return $1 if =~ /\A=?(\d+)\z/;  # deal with $fh just being an fd
-    return fileno $fh;
+    return $1 if $_[0] =~ /\A=?(\d+)\z/;  # deal with fh just being an fd
+    return fileno $_[0];
 }
 
 my $do_spawn = $^O eq 'os2' || $^O eq 'MSWin32';
index ba266bf..79f3f28 100644 (file)
@@ -2,6 +2,10 @@
 
 package Foo;
 
+BEGIN {
+    unshift @INC, "../lib";
+}
+
 use Test;
 
 plan tests => 7;