summaryrefslogtreecommitdiffstats
path: root/win/tclWinPipe.c
diff options
context:
space:
mode:
Diffstat (limited to 'win/tclWinPipe.c')
-rw-r--r--win/tclWinPipe.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/win/tclWinPipe.c b/win/tclWinPipe.c
index 565445e..9f650ff 100644
--- a/win/tclWinPipe.c
+++ b/win/tclWinPipe.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclWinPipe.c,v 1.7 1999/07/27 01:42:25 redman Exp $
+ * RCS: @(#) $Id: tclWinPipe.c,v 1.8 1999/07/31 01:24:25 redman Exp $
*/
#include "tclWinInt.h"
@@ -1746,6 +1746,12 @@ BuildCommandLine(
Tcl_DStringInit(&ds);
+ /*
+ * Prime the path.
+ */
+
+ Tcl_DStringAppend(&ds, Tcl_DStringValue(linePtr), -1);
+
for (i = 0; i < argc; i++) {
if (i == 0) {
arg = executable;