1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-26 02:15:31 +02:00

Bug 310376 - Local terminal connector needs to be upgraded to full terminal functionality provided by bug 248071

This commit is contained in:
Martin Oberhuber 2010-05-03 20:19:37 +00:00
parent dd737acbbc
commit 726d1b5402

View file

@ -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 {