From 726d1b540299c5e6c8a262f15fe89d50472c4259 Mon Sep 17 00:00:00 2001 From: Martin Oberhuber Date: Mon, 3 May 2010 20:19:37 +0000 Subject: [PATCH] Bug 310376 - Local terminal connector needs to be upgraded to full terminal functionality provided by bug 248071 --- .../terminal/local/launch/LocalTerminalLaunchDelegate.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org.eclipse.tm.terminal.local/src/org/eclipse/tm/internal/terminal/local/launch/LocalTerminalLaunchDelegate.java b/org.eclipse.tm.terminal.local/src/org/eclipse/tm/internal/terminal/local/launch/LocalTerminalLaunchDelegate.java index a6974da1268..bd918486302 100644 --- a/org.eclipse.tm.terminal.local/src/org/eclipse/tm/internal/terminal/local/launch/LocalTerminalLaunchDelegate.java +++ b/org.eclipse.tm.terminal.local/src/org/eclipse/tm/internal/terminal/local/launch/LocalTerminalLaunchDelegate.java @@ -43,7 +43,7 @@ import org.eclipse.ui.PlatformUI; * {@link ProcessFactory}, which allows the process to run with a pseudo-terminal ({@link PTY}). * * @author Mirko Raner and others - * @version $Revision: 1.2 $ + * @version $Revision: 1.1 $ */ public class LocalTerminalLaunchDelegate extends LaunchConfigurationDelegate { @@ -144,7 +144,7 @@ public class LocalTerminalLaunchDelegate extends LaunchConfigurationDelegate { ProcessFactory factory = ProcessFactory.getFactory(); if (PTY.isSupported()) { - spawner = factory.exec(commandLine, environment, workingDirectoryAsFile, new PTY()); + spawner = factory.exec(commandLine, environment, workingDirectoryAsFile, new PTY(false)); } else {