CreateTTY in -d
Ilya Zakharevich [Wed, 14 Nov 2001 21:26:31 +0000 (16:26 -0500)]
Message-Id: <20011114212631.A25705@math.ohio-state.edu>

p4raw-id: //depot/perl@13014

lib/perl5db.pl

index 5e01d53..a1eaf09 100644 (file)
@@ -541,9 +541,8 @@ if ($notty) {
                                );
     if (!$OUT) { die "Unable to connect to remote host: $remoteport\n"; }
     $IN = $OUT;
-  } elsif ($CreateTTY & 4) {
-    create_IN_OUT(4);
   } else {
+    create_IN_OUT(4) if $CreateTTY & 4;
     if (defined $console) {
       my ($i, $o) = split /,/, $console;
       $o = $i unless defined $o;
@@ -2315,7 +2314,7 @@ sub TTY {
     }
     &warn("Too late to set TTY, enabled on next `R'!\n") if $term and @_;
     # Useful if done through PERLDB_OPTS:
-    $tty = shift if @_;
+    $console = $tty = shift if @_;
     $tty or $console;
 }